[OpenWrt-Devel] [PATCH] ath79: fix patching ath9k MAC address for MyNet WiFi Range Extender
Adrian Schmutzler
freifunk at adrianschmutzler.de
Tue Oct 8 11:18:35 EDT 2019
The code line patching ath9k MAC address for this device contains
a wrong number of arguments including an unset "$mac", which
looks like a typo or copy/paste mistake.
This has been introduced already in the device support commit
745dee11ac78 ("ath79: add support for WD My Net Wi-Fi Range
Extender").
This patch just removes the "$mac" argument, leaving a formally
valid line. (No on-device test has been performed.)
Cc: Christian Lamparter <chunkeey at gmail.com>
Signed-off-by: Adrian Schmutzler <freifunk at adrianschmutzler.de>
---
.../ath79/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/linux/ath79/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom b/target/linux/ath79/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom
index 7911d0aa1e..91663896df 100644
--- a/target/linux/ath79/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom
+++ b/target/linux/ath79/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom
@@ -196,7 +196,7 @@ case "$FIRMWARE" in
;;
wd,mynet-wifi-rangeextender)
ath9k_eeprom_extract "art" 0x1000 0x1000
- ath9k_patch_fw_mac $(nvram get wl0_hwaddr) "$mac" 0x2
+ ath9k_patch_fw_mac $(nvram get wl0_hwaddr) 0x2
;;
*)
ath9k_eeprom_die "board $board is not supported yet"
--
2.20.1
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel
More information about the openwrt-devel
mailing list