]> git.baikalelectronics.ru Git - kernel.git/commitdiff
atmel: Use shared constant for rfc1042 header
authorPascal Terjan <pterjan@google.com>
Sat, 23 May 2020 21:27:35 +0000 (22:27 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Fri, 29 May 2020 17:16:24 +0000 (20:16 +0300)
This is one of the 9 drivers redefining rfc1042_header.

Signed-off-by: Pascal Terjan <pterjan@google.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200523212735.32364-1-pterjan@google.com
drivers/net/wireless/atmel/atmel.c

index 74538085cfb792f27692730b51510136051875d3..d5875836068c06edd3c1a7fa3d3cca7a31b54e5f 100644 (file)
@@ -798,7 +798,6 @@ static void tx_update_descriptor(struct atmel_private *priv, int is_bcast,
 
 static netdev_tx_t start_tx(struct sk_buff *skb, struct net_device *dev)
 {
-       static const u8 SNAP_RFC1024[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
        struct atmel_private *priv = netdev_priv(dev);
        struct ieee80211_hdr header;
        unsigned long flags;
@@ -853,7 +852,7 @@ static netdev_tx_t start_tx(struct sk_buff *skb, struct net_device *dev)
        }
 
        if (priv->use_wpa)
-               memcpy(&header.addr4, SNAP_RFC1024, ETH_ALEN);
+               memcpy(&header.addr4, rfc1042_header, ETH_ALEN);
 
        header.frame_control = cpu_to_le16(frame_ctl);
        /* Copy the wireless header into the card */