dect
/
linux-2.6
Archived
13
0
Fork 0

ARM: fix bug of checking on signed return value using unsigned statement in w90p910 platform

To fix the bug of checking on signed return value using unsigned statement.
Thanks Roel Kluin for digging out it.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Wan ZongShun <mcuos.com@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Wan ZongShun 2009-11-11 04:35:22 +00:00 committed by David S. Miller
parent 6baff15037
commit ddb1417529
1 changed files with 2 additions and 2 deletions

View File

@ -160,8 +160,8 @@ struct w90p910_ether {
struct mii_if_info mii;
struct timer_list check_timer;
void __iomem *reg;
unsigned int rxirq;
unsigned int txirq;
int rxirq;
int txirq;
unsigned int cur_tx;
unsigned int cur_rx;
unsigned int finish_tx;