[PATCH v2 1/2] staging: rtl8723bs: remove unused NDIS_802_11 typedefs
From: Malathi A <hidden>
Date: 2026-08-18 09:56:10
Also in:
lkml
Subsystem:
staging subsystem, the rest · Maintainers:
Greg Kroah-Hartman, Linus Torvalds
The 'NDIS_802_11_RATES' and 'NDIS_802_11_PMKID_VALUE' types have no users anywhere in the tree, only their typedef declarations remain. Remove both, together with the 'NDIS_802_11_LENGTH_RATES' definition whose only user was the 'NDIS_802_11_RATES' typedef. This addresses part of the "convert any remaining unusual variable types" entry in the driver TODO. Signed-off-by: Malathi A <redacted> --- v2: - Rebase onto staging-next. v1 was based on Linus' tree and did not apply, as staging-next already reworks wlan_bssdef.h. - Use my full name in From: and Signed-off-by:. --- drivers/staging/rtl8723bs/include/rtw_ioctl_set.h | 2 -- drivers/staging/rtl8723bs/include/wlan_bssdef.h | 2 -- 2 files changed, 4 deletions(-)
diff --git a/drivers/staging/rtl8723bs/include/rtw_ioctl_set.h b/drivers/staging/rtl8723bs/include/rtw_ioctl_set.h
index 768e4868ecfd..020b143f36be 100644
--- a/drivers/staging/rtl8723bs/include/rtw_ioctl_set.h
+++ b/drivers/staging/rtl8723bs/include/rtw_ioctl_set.h@@ -7,8 +7,6 @@ #ifndef __RTW_IOCTL_SET_H_ #define __RTW_IOCTL_SET_H_ -typedef u8 NDIS_802_11_PMKID_VALUE[16]; - u8 rtw_set_802_11_authentication_mode(struct adapter *pdapter, enum ndis_802_11_authentication_mode authmode); u8 rtw_set_802_11_add_wep(struct adapter *padapter, struct ndis_802_11_wep *wep); u8 rtw_set_802_11_disassociate(struct adapter *padapter);
diff --git a/drivers/staging/rtl8723bs/include/wlan_bssdef.h b/drivers/staging/rtl8723bs/include/wlan_bssdef.h
index f4c1456f1476..ff2cee2f3b99 100644
--- a/drivers/staging/rtl8723bs/include/wlan_bssdef.h
+++ b/drivers/staging/rtl8723bs/include/wlan_bssdef.h@@ -12,10 +12,8 @@ #define NDIS_802_11_LENGTH_SSID 32 -#define NDIS_802_11_LENGTH_RATES 8 #define NDIS_802_11_LENGTH_RATES_EX 16 -typedef unsigned char NDIS_802_11_RATES[NDIS_802_11_LENGTH_RATES]; /* Set of 8 data rates */ typedef unsigned char NDIS_802_11_RATES_EX[NDIS_802_11_LENGTH_RATES_EX]; /* Set of 16 data rates */ struct ndis_802_11_ssid {
--
2.43.0