summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Kaiser <martin@kaiser.cx>2022-04-17 13:22:21 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-04-20 19:37:18 +0300
commitdb84803cd8def406c60eb865d3b4ae0efa09a9f8 (patch)
tree9f166ee86ef2547ebfe73f3bf1023b4977c9585e
parent7d0b25d7fb5b6e783543165dc26ca2b9172cf664 (diff)
downloadlinux-db84803cd8def406c60eb865d3b4ae0efa09a9f8.tar.xz
staging: r8188eu: use ARRAY_SIZE for mlme_sta_tbl
Use ARRAY_SIZE instead of hard-coding the number of entries in the mlme_sta_tbl array. Signed-off-by: Martin Kaiser <martin@kaiser.cx> Link: https://lore.kernel.org/r/20220417102221.466524-7-martin@kaiser.cx Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/r8188eu/core/rtw_mlme_ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/r8188eu/core/rtw_mlme_ext.c b/drivers/staging/r8188eu/core/rtw_mlme_ext.c
index 6896379402a2..6b3d983bf91c 100644
--- a/drivers/staging/r8188eu/core/rtw_mlme_ext.c
+++ b/drivers/staging/r8188eu/core/rtw_mlme_ext.c
@@ -404,7 +404,7 @@ void mgt_dispatcher(struct adapter *padapter, struct recv_frame *precv_frame)
return;
index = (le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_STYPE) >> 4;
- if (index > 13)
+ if (index > ARRAY_SIZE(mlme_sta_tbl))
return;
fct = mlme_sta_tbl[index];