summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Straube <straube.linux@gmail.com>2021-09-22 22:04:13 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-09-27 17:29:42 +0200
commitcd88a0a44a6414690e3bf4b9484db7e2ac1ce957 (patch)
tree4b6e53d5d484e1f6ab2149c6c4dfdebacae4c7de
parentc3658b51f04a122a731e857ce1d98dd9a869d88b (diff)
downloadlinux-stable-cd88a0a44a6414690e3bf4b9484db7e2ac1ce957.tar.gz
linux-stable-cd88a0a44a6414690e3bf4b9484db7e2ac1ce957.tar.bz2
linux-stable-cd88a0a44a6414690e3bf4b9484db7e2ac1ce957.zip
staging: r8188eu: remove rtw_set_ie_secondary_ch_offset()
Function rtw_set_ie_secondary_ch_offset() is not used, remove it. Signed-off-by: Michael Straube <straube.linux@gmail.com> Link: https://lore.kernel.org/r/20210922200420.9693-41-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/r8188eu/core/rtw_ieee80211.c5
-rw-r--r--drivers/staging/r8188eu/include/ieee80211.h2
2 files changed, 0 insertions, 7 deletions
diff --git a/drivers/staging/r8188eu/core/rtw_ieee80211.c b/drivers/staging/r8188eu/core/rtw_ieee80211.c
index cc053a5d0f01..343c2f9a4ce8 100644
--- a/drivers/staging/r8188eu/core/rtw_ieee80211.c
+++ b/drivers/staging/r8188eu/core/rtw_ieee80211.c
@@ -140,11 +140,6 @@ u8 *rtw_set_ie
return pbuf + len + 2;
}
-inline u8 *rtw_set_ie_secondary_ch_offset(u8 *buf, u32 *buf_len, u8 secondary_ch_offset)
-{
- return rtw_set_ie(buf, WLAN_EID_SECONDARY_CHANNEL_OFFSET, 1, &secondary_ch_offset, buf_len);
-}
-
/*----------------------------------------------------------------------------
index: the information element id index, limit is the limit for search
-----------------------------------------------------------------------------*/
diff --git a/drivers/staging/r8188eu/include/ieee80211.h b/drivers/staging/r8188eu/include/ieee80211.h
index d97ba27f7f72..f0d5a640143f 100644
--- a/drivers/staging/r8188eu/include/ieee80211.h
+++ b/drivers/staging/r8188eu/include/ieee80211.h
@@ -1095,8 +1095,6 @@ enum secondary_ch_offset {
SCA = 1, /* secondary channel above */
SCB = 3, /* secondary channel below */
};
-u8 *rtw_set_ie_secondary_ch_offset(u8 *buf, u32 *buf_len,
- u8 secondary_ch_offset);
u8 *rtw_get_ie(u8 *pbuf, int index, int *len, int limit);