cns3xxx: ethernet: fix signed/unsigned comparison
Fixes a compiler warning Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
This commit is contained in:
parent
d1aa6bd698
commit
23cdbf2644
1 changed files with 1 additions and 1 deletions
|
@ -761,7 +761,7 @@ static int eth_xmit(struct sk_buff *skb, struct net_device *dev)
|
|||
int nr_desc = nr_frags;
|
||||
int index0, index, index_last;
|
||||
int len0;
|
||||
unsigned int i;
|
||||
int i;
|
||||
u32 config0;
|
||||
|
||||
if (pmap == 8)
|
||||
|
|
Loading…
Reference in a new issue