diff options
author | dingtianhong <dingtianhong@huawei.com> | 2014-01-11 03:23:37 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-01-14 02:30:35 -0500 |
commit | ae237b3ede6481d28daa62be44a8061d15912436 (patch) | |
tree | 007966951f50b2fd2c7216f627a84eec5fd7c0e9 /drivers/net/ethernet/3com | |
parent | e2072cdfb5579d85150b2b39306d2a8f5fb5ea8e (diff) |
net: 3com: fix warning for incorrect type in argument
The commit c466a9b2b329f7d9982c14eedc83a923d3bc711c
(net: 3com: slight optimization of addr compare)
cause a warning: "passing argument 1 of 'ether_addr_equal'
from incompatible pointer type", so fix it.
I think julia will convert ether_addr_equal to ether_addr_equal_64bits later.
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Ding Tianhong <dingtianhong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/3com')
-rw-r--r-- | drivers/net/ethernet/3com/3c509.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/3com/3c509.c b/drivers/net/ethernet/3com/3c509.c index 9142b473175c..c53384d41c96 100644 --- a/drivers/net/ethernet/3com/3c509.c +++ b/drivers/net/ethernet/3com/3c509.c | |||
@@ -252,7 +252,7 @@ static int el3_isa_id_sequence(__be16 *phys_addr) | |||
252 | for (i = 0; i < el3_cards; i++) { | 252 | for (i = 0; i < el3_cards; i++) { |
253 | struct el3_private *lp = netdev_priv(el3_devs[i]); | 253 | struct el3_private *lp = netdev_priv(el3_devs[i]); |
254 | if (lp->type == EL3_PNP && | 254 | if (lp->type == EL3_PNP && |
255 | ether_addr_equal(phys_addr, el3_devs[i]->dev_addr)) { | 255 | ether_addr_equal((u8 *)phys_addr, el3_devs[i]->dev_addr)) { |
256 | if (el3_debug > 3) | 256 | if (el3_debug > 3) |
257 | pr_debug("3c509 with address %02x %02x %02x %02x %02x %02x was found by ISAPnP\n", | 257 | pr_debug("3c509 with address %02x %02x %02x %02x %02x %02x was found by ISAPnP\n", |
258 | phys_addr[0] & 0xff, phys_addr[0] >> 8, | 258 | phys_addr[0] & 0xff, phys_addr[0] >> 8, |