mt76: connac: make read-only array ba_range static const
authorColin Ian King <colin.i.king@gmail.com>
Mon, 7 Mar 2022 22:24:29 +0000 (22:24 +0000)
committerFelix Fietkau <nbd@nbd.name>
Wed, 16 Mar 2022 16:40:22 +0000 (17:40 +0100)
Don't populate the read-only array ba_range on the stack but
instead make it static const. Also makes the object code a little
smaller.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt76_connac_mcu.c

index 5e65fa3..eeb73d1 100644 (file)
@@ -1054,7 +1054,7 @@ void mt76_connac_mcu_wtbl_ba_tlv(struct mt76_dev *dev, struct sk_buff *skb,
        }
 
        if (enable && tx) {
-               u8 ba_range[] = { 4, 8, 12, 24, 36, 48, 54, 64 };
+               static const u8 ba_range[] = { 4, 8, 12, 24, 36, 48, 54, 64 };
                int i;
 
                for (i = 7; i > 0; i--) {