2016-03-15 06:25:51

by Claudiu Beznea

[permalink] [raw]
Subject: [PATCH] Staging: wlan-ng: convert p80211_stt_findproto() to inline function

This patch switch p80211_stt_findproto() to inline
function.

Signed-off-by: Claudiu Beznea <[email protected]>
---
drivers/staging/wlan-ng/p80211conv.c | 2 +-
drivers/staging/wlan-ng/p80211conv.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/wlan-ng/p80211conv.c b/drivers/staging/wlan-ng/p80211conv.c
index bdb50a5..e648294 100644
--- a/drivers/staging/wlan-ng/p80211conv.c
+++ b/drivers/staging/wlan-ng/p80211conv.c
@@ -525,7 +525,7 @@ int skb_p80211_to_ether(wlandevice_t *wlandev, u32 ethconv,
* May be called in interrupt or non-interrupt context
*----------------------------------------------------------------
*/
-int p80211_stt_findproto(u16 proto)
+inline int p80211_stt_findproto(u16 proto)
{
/* Always return found for now. This is the behavior used by the */
/* Zoom Win95 driver when 802.1h mode is selected */
diff --git a/drivers/staging/wlan-ng/p80211conv.h b/drivers/staging/wlan-ng/p80211conv.h
index 8c10357..e81066d 100644
--- a/drivers/staging/wlan-ng/p80211conv.h
+++ b/drivers/staging/wlan-ng/p80211conv.h
@@ -155,6 +155,6 @@ int skb_ether_to_p80211(struct wlandevice *wlandev, u32 ethconv,
struct sk_buff *skb, union p80211_hdr *p80211_hdr,
struct p80211_metawep *p80211_wep);

-int p80211_stt_findproto(u16 proto);
+inline int p80211_stt_findproto(u16 proto);

#endif
--
1.9.1