2021-08-12 00:26:47

by Fabio M. De Francesco

[permalink] [raw]
Subject: [PATCH 2/3] staging: r8188eu: Remove code related to unsupported channels

Remove all code related to unsupported channel
bandwidths. rtl8188eu* NICs work only on 20 and
40 Mhz channels.

Signed-off-by: Fabio M. De Francesco <[email protected]>
---
drivers/staging/r8188eu/include/odm.h | 3 ---
drivers/staging/r8188eu/include/rtw_rf.h | 3 ---
2 files changed, 6 deletions(-)

diff --git a/drivers/staging/r8188eu/include/odm.h b/drivers/staging/r8188eu/include/odm.h
index a1f8c7fe595c..4dadb22bcc89 100644
--- a/drivers/staging/r8188eu/include/odm.h
+++ b/drivers/staging/r8188eu/include/odm.h
@@ -567,9 +567,6 @@ enum odm_security {
enum odm_bw {
ODM_BW20M = 0,
ODM_BW40M = 1,
- ODM_BW80M = 2,
- ODM_BW160M = 3,
- ODM_BW10M = 4,
};

/* ODM_CMNINFO_BOARD_TYPE */
diff --git a/drivers/staging/r8188eu/include/rtw_rf.h b/drivers/staging/r8188eu/include/rtw_rf.h
index 0f790da7e0aa..48129da9c93f 100644
--- a/drivers/staging/r8188eu/include/rtw_rf.h
+++ b/drivers/staging/r8188eu/include/rtw_rf.h
@@ -97,9 +97,6 @@ enum rf90_radio_path {
enum ht_channel_width {
HT_CHANNEL_WIDTH_20 = 0,
HT_CHANNEL_WIDTH_40 = 1,
- HT_CHANNEL_WIDTH_80 = 2,
- HT_CHANNEL_WIDTH_160 = 3,
- HT_CHANNEL_WIDTH_10 = 4,
};

/* */
--
2.32.0


2021-08-12 02:19:45

by Larry Finger

[permalink] [raw]
Subject: Re: [PATCH 2/3] staging: r8188eu: Remove code related to unsupported channels

On 8/11/21 7:25 PM, Fabio M. De Francesco wrote:
> Remove all code related to unsupported channel
> bandwidths. rtl8188eu* NICs work only on 20 and
> 40 Mhz channels.
>
> Signed-off-by: Fabio M. De Francesco <[email protected]>
> ---
> drivers/staging/r8188eu/include/odm.h | 3 ---
> drivers/staging/r8188eu/include/rtw_rf.h | 3 ---
> 2 files changed, 6 deletions(-)
>
> diff --git a/drivers/staging/r8188eu/include/odm.h b/drivers/staging/r8188eu/include/odm.h
> index a1f8c7fe595c..4dadb22bcc89 100644
> --- a/drivers/staging/r8188eu/include/odm.h
> +++ b/drivers/staging/r8188eu/include/odm.h
> @@ -567,9 +567,6 @@ enum odm_security {
> enum odm_bw {
> ODM_BW20M = 0,
> ODM_BW40M = 1,
> - ODM_BW80M = 2,
> - ODM_BW160M = 3,
> - ODM_BW10M = 4,
> };
>
> /* ODM_CMNINFO_BOARD_TYPE */
> diff --git a/drivers/staging/r8188eu/include/rtw_rf.h b/drivers/staging/r8188eu/include/rtw_rf.h
> index 0f790da7e0aa..48129da9c93f 100644
> --- a/drivers/staging/r8188eu/include/rtw_rf.h
> +++ b/drivers/staging/r8188eu/include/rtw_rf.h
> @@ -97,9 +97,6 @@ enum rf90_radio_path {
> enum ht_channel_width {
> HT_CHANNEL_WIDTH_20 = 0,
> HT_CHANNEL_WIDTH_40 = 1,
> - HT_CHANNEL_WIDTH_80 = 2,
> - HT_CHANNEL_WIDTH_160 = 3,
> - HT_CHANNEL_WIDTH_10 = 4,
> };
>
> /* */
>

Acked-by: Larry Finger <[email protected]>