mac80211: fix ath10k 5.19 support

This commit is contained in:
lean 2022-08-25 02:55:42 +08:00
parent c5fdfb9edb
commit d496bf88a4

View File

@ -0,0 +1,14 @@
--- a/drivers/net/wireless/ath/ath10k/core.c
+++ b/drivers/net/wireless/ath/ath10k/core.c
@@ -3333,7 +3333,11 @@
ath10k_debug_print_board_info(ar);
}
+#if LINUX_VERSION_CODE < KERNEL_VERSION(5,18,0)
device_get_mac_address(ar->dev, ar->mac_addr, sizeof(ar->mac_addr));
+#else
+ device_get_mac_address(ar->dev, ar->mac_addr);
+#endif
of_get_mac_address(ar->dev->of_node, ar->mac_addr);