diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2015-10-22 01:36:16 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2015-10-22 01:36:16 +0000 |
commit | 92619f554a544cb20f4d346ae6251b8c54821024 (patch) | |
tree | fb45bc68bee724817853ab6c2e92c98b51e1d338 | |
parent | 8f9403e952c59f4ca811281f97dc56a17d11a669 (diff) | |
download | src-92619f554a544cb20f4d346ae6251b8c54821024.tar.gz src-92619f554a544cb20f4d346ae6251b8c54821024.zip |
Fix IEEE80211_ADDR_COPY() usage.
Reviewed by: adrian
Notes
Notes:
svn path=/head/; revision=289729
-rw-r--r-- | sys/dev/iwm/if_iwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/iwm/if_iwm.c b/sys/dev/iwm/if_iwm.c index df7f4228855f..ce3b603d5b5e 100644 --- a/sys/dev/iwm/if_iwm.c +++ b/sys/dev/iwm/if_iwm.c @@ -2081,7 +2081,7 @@ iwm_run_init_mvm_ucode(struct iwm_softc *sc, int justnvm) device_printf(sc->sc_dev, "failed to read nvm\n"); return error; } - IEEE80211_ADDR_COPY(sc->sc_ic.ic_macaddr, &sc->sc_nvm.hw_addr); + IEEE80211_ADDR_COPY(sc->sc_ic.ic_macaddr, sc->sc_nvm.hw_addr); sc->sc_scan_cmd_len = sizeof(struct iwm_scan_cmd) + sc->sc_capa_max_probe_len |