From 30c44240b938a60ff04b7d926063cb92f1c2c464 Mon Sep 17 00:00:00 2001 From: kimocoder Date: Tue, 3 Jul 2018 10:09:53 +0200 Subject: [PATCH] use BIT(n) macros instead of pre-calculated masks in bunch of places --- os_dep/linux/os_intfs.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/os_dep/linux/os_intfs.c b/os_dep/linux/os_intfs.c index 84b02d0..5977fe8 100644 --- a/os_dep/linux/os_intfs.c +++ b/os_dep/linux/os_intfs.c @@ -174,7 +174,7 @@ int rtw_bw_mode = CONFIG_RTW_CUSTOMIZE_BWMODE; int rtw_bw_mode = 0x21; #endif int rtw_ampdu_enable = 1;/* for enable tx_ampdu , */ /* 0: disable, 0x1:enable */ -int rtw_rx_stbc = 3;/* 0: disable, bit(0):enable 2.4g, bit(1):enable 5g, default is set to enable 2.4GHZ for IOT issue with bufflao's AP at 5GHZ */ +int rtw_rx_stbc = BIT(0) | BIT(1);/* 0: disable, bit(0):enable 2.4g, bit(1):enable 5g; =1 can be used to enable 2.4GHZ for IOT issue with bufflao's AP at 5GHZ */ #if (defined(CONFIG_RTL8814A) || defined(CONFIG_RTL8822B)) && defined(CONFIG_PCI_HCI) int rtw_rx_ampdu_amsdu = 2;/* 0: disabled, 1:enabled, 2:auto . There is an IOT issu with DLINK DIR-629 when the flag turn on */ #else @@ -212,11 +212,11 @@ MODULE_PARM_DESC(rtw_rx_ampdu_sz_limit_4ss, "RX AMPDU size limit for 4SS link of * BIT1 - 40MHz, 0: non-support, 1: support * BIT2 - 80MHz, 0: non-support, 1: support * BIT3 - 160MHz, 0: non-support, 1: support */ -int rtw_short_gi = 0xf; +int rtw_short_gi = BIT(0) | BIT(1) | BIT(2) | BIT(3); /* BIT0: Enable VHT LDPC Rx, BIT1: Enable VHT LDPC Tx, BIT4: Enable HT LDPC Rx, BIT5: Enable HT LDPC Tx */ -int rtw_ldpc_cap = 0x33; +int rtw_ldpc_cap = BIT(0) | BIT(1) | BIT(4) | BIT(5); /* BIT0: Enable VHT STBC Rx, BIT1: Enable VHT STBC Tx, BIT4: Enable HT STBC Rx, BIT5: Enable HT STBC Tx */ -int rtw_stbc_cap = 0x13; +int rtw_stbc_cap = BIT(0) | BIT(1) | BIT(4) | BIT(5); /* * BIT0: Enable VHT SU Beamformer * BIT1: Enable VHT SU Beamformee @@ -225,7 +225,7 @@ int rtw_stbc_cap = 0x13; * BIT4: Enable HT Beamformer * BIT5: Enable HT Beamformee */ -int rtw_beamform_cap = BIT(1) | BIT(3); +int rtw_beamform_cap = BIT(0) | BIT(1); int rtw_bfer_rf_number = 0; /*BeamformerCapRfNum Rf path number, 0 for auto, others for manual*/ int rtw_bfee_rf_number = 0; /*BeamformeeCapRfNum Rf path number, 0 for auto, others for manual*/