Skip to content

Commit

Permalink
ARM: fix bug of checking on signed return value using unsigned statem…
Browse files Browse the repository at this point in the history
…ent 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>
  • Loading branch information
Wan ZongShun authored and David S. Miller committed Nov 14, 2009
1 parent 6baff15 commit ddb1417
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/arm/w90p910_ether.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ddb1417

Please sign in to comment.