]> www.infradead.org Git - linux.git/commitdiff
staging: rtl8723bs: make read-only array dot11_rate_table static const
authorColin Ian King <colin.i.king@gmail.com>
Thu, 22 Aug 2024 16:30:52 +0000 (17:30 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 23 Aug 2024 01:16:45 +0000 (09:16 +0800)
Don't populate the read-only array dot11_rate_table on the stack at
run time, instead make it static const.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20240822163052.636570-1-colin.i.king@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_ieee80211.c

index b89e88d6a82d527bf6f60b1de02cc5ebaadb70cd..0cc5142a90e024b6b02e883260ba734f35ff34d3 100644 (file)
@@ -55,7 +55,9 @@ static u8 WIFI_OFDMRATES[] = {
 
 int rtw_get_bit_value_from_ieee_value(u8 val)
 {
-       unsigned char dot11_rate_table[] = {2, 4, 11, 22, 12, 18, 24, 36, 48, 72, 96, 108, 0}; /*  last element must be zero!! */
+       static const unsigned char dot11_rate_table[] = {
+               2, 4, 11, 22, 12, 18, 24, 36, 48, 72, 96, 108, 0
+       }; /*  last element must be zero!! */
        int i = 0;
 
        while (dot11_rate_table[i] != 0) {