]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net: ti: slight optimization of addr compare
authordingtianhong <dingtianhong@huawei.com>
Mon, 30 Dec 2013 07:41:27 +0000 (15:41 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 31 Dec 2013 21:48:33 +0000 (16:48 -0500)
Use possibly more efficient ether_addr_equal
to instead of memcmp.

Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Ding Tianhong <dingtianhong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ti/cpsw_ale.c

index 7fa60d6092edf9c4fa1caf641dbe0764ea583e7a..63e981975059677c2715c72971bba04d94b0e5da 100644 (file)
@@ -163,7 +163,7 @@ int cpsw_ale_match_addr(struct cpsw_ale *ale, u8 *addr, u16 vid)
                if (cpsw_ale_get_vlan_id(ale_entry) != vid)
                        continue;
                cpsw_ale_get_addr(ale_entry, entry_addr);
-               if (memcmp(entry_addr, addr, 6) == 0)
+               if (ether_addr_equal(entry_addr, addr))
                        return idx;
        }
        return -ENOENT;