diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2019-10-21 16:19:47 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2019-10-22 11:41:14 +0200 |
commit | 77d8efe80e20da8dfed0139790319356bf94c49a (patch) | |
tree | 6eb7f951a3007448542df3af9f7389e325ada6cc /target/linux | |
parent | 081d96bece97748d73e55e070e058dd735438bf0 (diff) | |
download | upstream-77d8efe80e20da8dfed0139790319356bf94c49a.tar.gz upstream-77d8efe80e20da8dfed0139790319356bf94c49a.tar.bz2 upstream-77d8efe80e20da8dfed0139790319356bf94c49a.zip |
ath79: fix patching ath9k MAC address for MyNet WiFi Range Extender
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@gmail.com>
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
(cherry picked from commit 6b5303378315084bf080a6408c2ca5b2a911aa5d)
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ath79/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom | 2 |
1 files changed, 1 insertions, 1 deletions
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 f2b1433448..a063a3f9ca 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 @@ -188,7 +188,7 @@ case "$FIRMWARE" in ;; wd,mynet-wifi-rangeextender) ath9k_eeprom_extract "art" 4096 4096 - ath9k_patch_fw_mac $(nvram get wl0_hwaddr) "$mac" 2 + ath9k_patch_fw_mac $(nvram get wl0_hwaddr) 2 ;; *) ath9k_eeprom_die "board $board is not supported yet" |