staging: rtl8723bs: os_dep: remove rtw_spt_band_free()

Now that rtw_spt_band_free() is only a direct wrapper of kfree, we can
remove it and just use kfree().

Signed-off-by: Jason Yan <yanaijie@huawei.com>
Link: https://lore.kernel.org/r/20200428133115.28072-1-yanaijie@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Jason Yan 2020-04-28 21:31:15 +08:00 committed by Greg Kroah-Hartman
parent d95c8695e0
commit 8a6e4f430b
1 changed files with 1 additions and 6 deletions

View File

@ -152,11 +152,6 @@ exit:
return spt_band;
}
static void rtw_spt_band_free(struct ieee80211_supported_band *spt_band)
{
kfree(spt_band);
}
static const struct ieee80211_txrx_stypes
rtw_cfg80211_default_mgmt_stypes[NUM_NL80211_IFTYPES] = {
[NL80211_IFTYPE_ADHOC] = {
@ -3476,7 +3471,7 @@ void rtw_wdev_free(struct wireless_dev *wdev)
if (!wdev)
return;
rtw_spt_band_free(wdev->wiphy->bands[NL80211_BAND_2GHZ]);
kfree(wdev->wiphy->bands[NL80211_BAND_2GHZ]);
wiphy_free(wdev->wiphy);