Commit 0483eeac authored by Johannes Berg's avatar Johannes Berg

cfg80211: replace ieee80211_ie_split() with an inline

The function is a very simple wrapper around another one,
just adds a few default parameters, so replace it with a
static inline instead of using EXPORT_SYMBOL, reducing
the module size slightly.
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 6e045905
...@@ -5173,8 +5173,11 @@ size_t ieee80211_ie_split_ric(const u8 *ies, size_t ielen, ...@@ -5173,8 +5173,11 @@ size_t ieee80211_ie_split_ric(const u8 *ies, size_t ielen,
* buffer starts, which may be @ielen if the entire (remainder) * buffer starts, which may be @ielen if the entire (remainder)
* of the buffer should be used. * of the buffer should be used.
*/ */
size_t ieee80211_ie_split(const u8 *ies, size_t ielen, static inline size_t ieee80211_ie_split(const u8 *ies, size_t ielen,
const u8 *ids, int n_ids, size_t offset); const u8 *ids, int n_ids, size_t offset)
{
return ieee80211_ie_split_ric(ies, ielen, ids, n_ids, NULL, 0, offset);
}
/** /**
* cfg80211_report_wowlan_wakeup - report wakeup from WoWLAN * cfg80211_report_wowlan_wakeup - report wakeup from WoWLAN
......
...@@ -1325,13 +1325,6 @@ size_t ieee80211_ie_split_ric(const u8 *ies, size_t ielen, ...@@ -1325,13 +1325,6 @@ size_t ieee80211_ie_split_ric(const u8 *ies, size_t ielen,
} }
EXPORT_SYMBOL(ieee80211_ie_split_ric); EXPORT_SYMBOL(ieee80211_ie_split_ric);
size_t ieee80211_ie_split(const u8 *ies, size_t ielen,
const u8 *ids, int n_ids, size_t offset)
{
return ieee80211_ie_split_ric(ies, ielen, ids, n_ids, NULL, 0, offset);
}
EXPORT_SYMBOL(ieee80211_ie_split);
bool ieee80211_operating_class_to_band(u8 operating_class, bool ieee80211_operating_class_to_band(u8 operating_class,
enum ieee80211_band *band) enum ieee80211_band *band)
{ {
......
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