1
0
Fork 0

staging/wlan-ng: add prefix to function name

Renamed convert_frame_to_ether() to p80211_convert_to_ether().

Signed-off-by: Denis Pithon <denis.pithon@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Denis Pithon 2014-05-17 00:30:16 +02:00 committed by Greg Kroah-Hartman
parent e725cef3e5
commit ae4af9adf1
1 changed files with 3 additions and 3 deletions

View File

@ -244,7 +244,7 @@ void p80211netdev_rx(wlandevice_t *wlandev, struct sk_buff *skb)
#define CONV_TO_ETHER_FAILED 0x02
/**
* convert_frame_to_ether - conversion from 802.11 frame to ethernet frame
* p80211_convert_to_ether - conversion from 802.11 frame to ethernet frame
* @wlandev: pointer to WLAN device
* @skb: pointer to socket buffer
*
@ -252,7 +252,7 @@ void p80211netdev_rx(wlandevice_t *wlandev, struct sk_buff *skb)
* CONV_TO_ETHER_FAILED if conversion failed
* CONV_TO_ETHER_SKIPPED if frame is ignored
*/
static int convert_frame_to_ether(wlandevice_t *wlandev, struct sk_buff *skb)
static int p80211_convert_to_ether(wlandevice_t *wlandev, struct sk_buff *skb)
{
struct p80211_hdr_a3 *hdr;
@ -314,7 +314,7 @@ static void p80211netdev_rx_bh(unsigned long arg)
netif_rx_ni(skb);
continue;
} else {
if (!convert_frame_to_ether(wlandev, skb))
if (!p80211_convert_to_ether(wlandev, skb))
continue;
}
}