lede/package/kernel/mac80211/patches/ath10k/991-ath10k-5.19.patch
2022-12-20 14:57:32 +08:00

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);