staging: rtl8723au: Use ARRAY_SIZE macro for sizes of arrays

Use ARRAY_SIZE to calculate the size of an array to make code concise.
The semantic patch used can be found here:
9cbab452a3

Signed-off-by: Janani Ravichandran <janani.rvchndrn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Janani Ravichandran 2016-02-11 18:50:40 -05:00 committed by Greg Kroah-Hartman
parent 2fbf6d6166
commit 993c0a0ea0
4 changed files with 6 additions and 8 deletions

View File

@ -295,8 +295,7 @@ static void rtw_cmd_work(struct work_struct *work)
post_process: post_process:
/* call callback function for post-processed */ /* call callback function for post-processed */
if (pcmd->cmdcode < (sizeof(rtw_cmd_callback) / if (pcmd->cmdcode < ARRAY_SIZE(rtw_cmd_callback)) {
sizeof(struct _cmd_callback))) {
pcmd_callback = rtw_cmd_callback[pcmd->cmdcode].callback; pcmd_callback = rtw_cmd_callback[pcmd->cmdcode].callback;
if (!pcmd_callback) { if (!pcmd_callback) {
RT_TRACE(_module_rtl871x_cmd_c_, _drv_info_, RT_TRACE(_module_rtl871x_cmd_c_, _drv_info_,

View File

@ -2154,8 +2154,7 @@ OnAction23a(struct rtw_adapter *padapter, struct recv_frame *precv_frame)
category = mgmt->u.action.category; category = mgmt->u.action.category;
for (i = 0; for (i = 0; i < ARRAY_SIZE(OnAction23a_tbl); i++) {
i < sizeof(OnAction23a_tbl) / sizeof(struct action_handler); i++) {
ptable = &OnAction23a_tbl[i]; ptable = &OnAction23a_tbl[i];
if (category == ptable->num) if (category == ptable->num)

View File

@ -219,7 +219,7 @@ void ODM_ReadAndConfig_AGC_TAB_1T_8723A(struct dm_odm_t *pDM_Odm)
u32 i; u32 i;
u8 platform = 0x04; u8 platform = 0x04;
u8 board = pDM_Odm->BoardType; u8 board = pDM_Odm->BoardType;
u32 ArrayLen = sizeof(Array_AGC_TAB_1T_8723A)/sizeof(u32); u32 ArrayLen = ARRAY_SIZE(Array_AGC_TAB_1T_8723A);
u32 *Array = Array_AGC_TAB_1T_8723A; u32 *Array = Array_AGC_TAB_1T_8723A;
hex = board; hex = board;
@ -467,7 +467,7 @@ void ODM_ReadAndConfig_PHY_REG_1T_8723A(struct dm_odm_t *pDM_Odm)
u32 i = 0; u32 i = 0;
u8 platform = 0x04; u8 platform = 0x04;
u8 board = pDM_Odm->BoardType; u8 board = pDM_Odm->BoardType;
u32 ArrayLen = sizeof(Array_PHY_REG_1T_8723A)/sizeof(u32); u32 ArrayLen = ARRAY_SIZE(Array_PHY_REG_1T_8723A);
u32 *Array = Array_PHY_REG_1T_8723A; u32 *Array = Array_PHY_REG_1T_8723A;
hex += board; hex += board;
@ -523,7 +523,7 @@ void ODM_ReadAndConfig_PHY_REG_MP_8723A(struct dm_odm_t *pDM_Odm)
u32 i; u32 i;
u8 platform = 0x04; u8 platform = 0x04;
u8 board = pDM_Odm->BoardType; u8 board = pDM_Odm->BoardType;
u32 ArrayLen = sizeof(Array_PHY_REG_MP_8723A)/sizeof(u32); u32 ArrayLen = ARRAY_SIZE(Array_PHY_REG_MP_8723A);
u32 *Array = Array_PHY_REG_MP_8723A; u32 *Array = Array_PHY_REG_MP_8723A;
hex += board; hex += board;

View File

@ -145,7 +145,7 @@ void ODM_ReadAndConfig_MAC_REG_8723A(struct dm_odm_t *pDM_Odm)
u32 i = 0; u32 i = 0;
u8 platform = 0x04; u8 platform = 0x04;
u8 board = pDM_Odm->BoardType; u8 board = pDM_Odm->BoardType;
u32 ArrayLen = sizeof(Array_MAC_REG_8723A)/sizeof(u32); u32 ArrayLen = ARRAY_SIZE(Array_MAC_REG_8723A);
u32 *Array = Array_MAC_REG_8723A; u32 *Array = Array_MAC_REG_8723A;
hex += board; hex += board;