]> git.dujemihanovic.xyz Git - linux.git/commitdiff
benet: remove broken and unused macro
authorLubomir Rintel <lkundrak@v3.sk>
Mon, 28 Jan 2019 16:17:40 +0000 (17:17 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Jan 2019 18:56:01 +0000 (10:56 -0800)
is_broadcast_packet() expands to compare_ether_addr() which doesn't
exist since commit 7367d0b573d1 ("drivers/net: Convert uses of
compare_ether_addr to ether_addr_equal"). It turns out it's actually not
used.

Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/emulex/benet/be_main.c

index d5026909dec5b9092002478e5e628fc8f642d396..3c7c04406a2bfa55d1f3c67e0019d488c7dff4a8 100644 (file)
@@ -1270,10 +1270,6 @@ static void be_xmit_flush(struct be_adapter *adapter, struct be_tx_obj *txo)
 #define is_arp_allowed_on_bmc(adapter, skb)    \
        (is_arp(skb) && is_arp_filt_enabled(adapter))
 
-#define is_broadcast_packet(eh, adapter)       \
-               (is_multicast_ether_addr(eh->h_dest) && \
-               !compare_ether_addr(eh->h_dest, adapter->netdev->broadcast))
-
 #define is_arp(skb)    (skb->protocol == htons(ETH_P_ARP))
 
 #define is_arp_filt_enabled(adapter)   \