commit | d6b9076f1b5dd22b63f0178923f420f4e0f81a8d | [log] [tgz] |
---|---|---|
author | David S. Miller <davem@davemloft.net> | Wed Oct 28 03:38:54 2009 -0700 |
committer | David S. Miller <davem@davemloft.net> | Wed Oct 28 03:38:54 2009 -0700 |
tree | 33a7054483e9d5cb6dff25126db11dc4d4ca4823 | |
parent | 559e9c4987e90e278db347b0a2ba423e7e496fd3 [diff] |
igb: Fix warnings in igb_set_ringparam() drivers/net/igb/igb_ethtool.c: In function ‘igb_set_ringparam’: drivers/net/igb/igb_ethtool.c:744: warning: comparison of distinct pointer types lacks a cast drivers/net/igb/igb_ethtool.c:748: warning: comparison of distinct pointer types lacks a cast Casts were to u16 on the constant, but the type of new_{r,t}x_count is u32. Cast to u32 instead. Signed-off-by: David S. Miller <davem@davemloft.net>