Files
linux/drivers
David S. Miller 30dfe2c050 atm: fore200e: Fix build warning.
GCC (rightfully) complains that:

drivers/atm/fore200e.c:614:5: warning: operation on 'cmdq->head' may be undefined

This is due to the FORE200E_NEXT_ENTRY macro, which essentially
evaluates to:

	i = ++i % m

Make it what's explicitly intended here which is:

	i = (i + 1) % m

and the warning goes away.

Signed-off-by: David S. Miller <davem@davemloft.net>
2010-11-18 11:49:25 -08:00
..
2010-11-18 11:49:25 -08:00
2010-10-29 00:29:51 +02:00
2010-11-11 10:29:40 -08:00
2010-11-10 14:40:53 +01:00
2010-10-30 08:31:35 -07:00
2010-11-18 09:33:19 -08:00
2010-11-08 11:41:15 -05:00
2010-11-12 07:55:30 -08:00
2010-11-10 14:54:09 +01:00
2010-11-11 11:06:09 -08:00