forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
kernel/drivers/net/wireless/ath/carl9170/carl9170.h
....@@ -68,7 +68,10 @@
6868
6969 #define PAYLOAD_MAX (CARL9170_MAX_CMD_LEN / 4 - 1)
7070
71
-static const u8 ar9170_qmap[__AR9170_NUM_TXQ] = { 3, 2, 1, 0 };
71
+static inline u8 ar9170_qmap(u8 idx)
72
+{
73
+ return 3 - idx; /* { 3, 2, 1, 0 } */
74
+}
7275
7376 #define CARL9170_MAX_RX_BUFFER_SIZE 8192
7477