Commit 5d7dce76 authored by Hannes Eder's avatar Hannes Eder Committed by David S. Miller

drivers/net/ns83820.c: fix sparse warnings: fix signedness

Fix this sparse warnings:
  drivers/net/ns83820.c:479:36: warning: incorrect type in argument 2 (different signedness)
  drivers/net/ns83820.c:479:36: warning: incorrect type in argument 2 (different signedness)
  drivers/net/ns83820.c:479:36: warning: incorrect type in argument 2 (different signedness)
  drivers/net/ns83820.c:479:36: warning: incorrect type in argument 2 (different signedness)
Signed-off-by: default avatarHannes Eder <hannes@hanneseder.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fbf97891
...@@ -409,7 +409,7 @@ static int lnksts = 0; /* CFG_LNKSTS bit polarity */ ...@@ -409,7 +409,7 @@ static int lnksts = 0; /* CFG_LNKSTS bit polarity */
struct rx_info { struct rx_info {
spinlock_t lock; spinlock_t lock;
int up; int up;
long idle; unsigned long idle;
struct sk_buff *skbs[NR_RX_DESC]; struct sk_buff *skbs[NR_RX_DESC];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment