diff options
author | John Crispin <john@openwrt.org> | 2015-01-28 12:07:35 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-01-28 12:07:35 +0000 |
commit | 895edf7c43c7e7c3927165530c46a8d3ccae8fec (patch) | |
tree | 1b8203ff0dd55af55c7290e53a2ce854f93234b7 /package/kernel/mac80211/patches | |
parent | cae76f611a17cd0d6e1364101d6cb60329a5b75e (diff) | |
download | upstream-895edf7c43c7e7c3927165530c46a8d3ccae8fec.tar.gz upstream-895edf7c43c7e7c3927165530c46a8d3ccae8fec.tar.bz2 upstream-895edf7c43c7e7c3927165530c46a8d3ccae8fec.zip |
libertas: set wireless macaddr
Update the wireless macaddr with the value retrieved from the H/W.
Signed-off-by: Nathan Hintz <nlhintz@hotmail.com>
SVN-Revision: 44175
Diffstat (limited to 'package/kernel/mac80211/patches')
-rw-r--r-- | package/kernel/mac80211/patches/802-libertas-set-wireless-macaddr.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/kernel/mac80211/patches/802-libertas-set-wireless-macaddr.patch b/package/kernel/mac80211/patches/802-libertas-set-wireless-macaddr.patch new file mode 100644 index 0000000000..3eaf416d5d --- /dev/null +++ b/package/kernel/mac80211/patches/802-libertas-set-wireless-macaddr.patch @@ -0,0 +1,11 @@ +--- a/drivers/net/wireless/libertas/cfg.c ++++ b/drivers/net/wireless/libertas/cfg.c +@@ -2172,6 +2172,8 @@ int lbs_cfg_register(struct lbs_private + wdev->wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites); + wdev->wiphy->reg_notifier = lbs_reg_notifier; + ++ memcpy(wdev->wiphy->perm_addr, priv->current_addr, ETH_ALEN); ++ + ret = wiphy_register(wdev->wiphy); + if (ret < 0) + pr_err("cannot register wiphy device\n"); |