mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-26 22:29:33 +00:00
24 lines
795 B
Diff
24 lines
795 B
Diff
|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <zajec5@gmail.com>
|
||
|
Date: Sun, 31 May 2015 02:52:26 +0200
|
||
|
Subject: [PATCH] brcmfmac: set wiphy perm_addr to hardware MAC address
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
This allows e.g. user space to use /sys/class/ieee80211/*/macaddress
|
||
|
|
||
|
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
|
||
|
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
|
||
|
---
|
||
|
|
||
|
--- a/drivers/net/wireless/brcm80211/brcmfmac/cfg80211.c
|
||
|
+++ b/drivers/net/wireless/brcm80211/brcmfmac/cfg80211.c
|
||
|
@@ -6070,6 +6070,7 @@ struct brcmf_cfg80211_info *brcmf_cfg802
|
||
|
brcmf_err("Could not allocate wiphy device\n");
|
||
|
return NULL;
|
||
|
}
|
||
|
+ memcpy(wiphy->perm_addr, drvr->mac, ETH_ALEN);
|
||
|
set_wiphy_dev(wiphy, busdev);
|
||
|
|
||
|
cfg = wiphy_priv(wiphy);
|