wifi: rtw88: pci: Use enum type for rtw_hw_queue_mapping() and ac_to_hwq
authorMartin Blumenstingl <martin.blumenstingl@googlemail.com>
Sat, 4 Feb 2023 23:29:58 +0000 (00:29 +0100)
committerKalle Valo <kvalo@kernel.org>
Mon, 13 Feb 2023 15:15:45 +0000 (17:15 +0200)
rtw_hw_queue_mapping() and ac_to_hwq[] hold values of type enum
rtw_tx_queue_type. Change their types to reflect this to make it easier
to understand this part of the code.

While here, also change the array to be static const as it is not
supposed to be modified at runtime.

Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Reviewed-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20230204233001.1511643-2-martin.blumenstingl@googlemail.com
drivers/net/wireless/realtek/rtw88/pci.c

index 0975d27240e4667ca3796d3d2b964457a943d3bc..45ce7e624c0302b65dc0c004b773239ecbe8c419 100644 (file)
@@ -669,7 +669,7 @@ static void rtw_pci_deep_ps(struct rtw_dev *rtwdev, bool enter)
        spin_unlock_bh(&rtwpci->irq_lock);
 }
 
-static u8 ac_to_hwq[] = {
+static const enum rtw_tx_queue_type ac_to_hwq[] = {
        [IEEE80211_AC_VO] = RTW_TX_QUEUE_VO,
        [IEEE80211_AC_VI] = RTW_TX_QUEUE_VI,
        [IEEE80211_AC_BE] = RTW_TX_QUEUE_BE,
@@ -678,12 +678,12 @@ static u8 ac_to_hwq[] = {
 
 static_assert(ARRAY_SIZE(ac_to_hwq) == IEEE80211_NUM_ACS);
 
-static u8 rtw_hw_queue_mapping(struct sk_buff *skb)
+static enum rtw_tx_queue_type rtw_hw_queue_mapping(struct sk_buff *skb)
 {
        struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
        __le16 fc = hdr->frame_control;
        u8 q_mapping = skb_get_queue_mapping(skb);
-       u8 queue;
+       enum rtw_tx_queue_type queue;
 
        if (unlikely(ieee80211_is_beacon(fc)))
                queue = RTW_TX_QUEUE_BCN;