atmel: Use shared constant for rfc1042 header
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
This commit is contained in:

committed by
Kalle Valo

parent
729ef6b614
commit
e78e5d18c6
@@ -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 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 atmel_private *priv = netdev_priv(dev);
|
||||||
struct ieee80211_hdr header;
|
struct ieee80211_hdr header;
|
||||||
unsigned long flags;
|
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)
|
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);
|
header.frame_control = cpu_to_le16(frame_ctl);
|
||||||
/* Copy the wireless header into the card */
|
/* Copy the wireless header into the card */
|
||||||
|
Reference in New Issue
Block a user