Commit d94606e0 authored by Larry Finger's avatar Larry Finger Committed by John W. Linville

[PATCH] Minor (janitorial) change to ieee80211

The attached patch removes a potential problem from ieee80211_wx.c, by changing the name of routine
ipw2100_translate_scan to ieee80211_translate_scan. The problem is minor as the routine is declared
static; however, if it were made global, it would pollute the namespace.
Signed-Off-By: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent cfa146e4
...@@ -42,7 +42,7 @@ static const char *ieee80211_modes[] = { ...@@ -42,7 +42,7 @@ static const char *ieee80211_modes[] = {
}; };
#define MAX_CUSTOM_LEN 64 #define MAX_CUSTOM_LEN 64
static char *ipw2100_translate_scan(struct ieee80211_device *ieee, static char *ieee80211_translate_scan(struct ieee80211_device *ieee,
char *start, char *stop, char *start, char *stop,
struct ieee80211_network *network) struct ieee80211_network *network)
{ {
...@@ -274,7 +274,7 @@ int ieee80211_wx_get_scan(struct ieee80211_device *ieee, ...@@ -274,7 +274,7 @@ int ieee80211_wx_get_scan(struct ieee80211_device *ieee,
if (ieee->scan_age == 0 || if (ieee->scan_age == 0 ||
time_after(network->last_scanned + ieee->scan_age, jiffies)) time_after(network->last_scanned + ieee->scan_age, jiffies))
ev = ipw2100_translate_scan(ieee, ev, stop, network); ev = ieee80211_translate_scan(ieee, ev, stop, network);
else else
IEEE80211_DEBUG_SCAN("Not showing network '%s (" IEEE80211_DEBUG_SCAN("Not showing network '%s ("
MAC_FMT ")' due to age (%dms).\n", MAC_FMT ")' due to age (%dms).\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment