mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
15 lines
440 B
Diff
15 lines
440 B
Diff
--- a/drivers/net/wireless/ath/ath10k/core.c
|
|
+++ b/drivers/net/wireless/ath/ath10k/core.c
|
|
@@ -3333,7 +3333,11 @@ static int ath10k_core_probe_fw(struct a
|
|
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);
|
|
|