diff options
| author | 2015-03-02 19:54:49 -0800 | |
|---|---|---|
| committer | 2015-03-03 17:01:36 -0500 | |
| commit | 93803b3385c653bc6fd391c0de00ef811b3dadc0 (patch) | |
| tree | e235b7e13f190356597758d2f498ce4e79d6d5a8 /drivers/net/wireless/hostap/hostap_info.c | |
| parent | net: usb: Use eth_<foo>_addr instead of memset (diff) | |
| download | linux-dev-93803b3385c653bc6fd391c0de00ef811b3dadc0.tar.xz linux-dev-93803b3385c653bc6fd391c0de00ef811b3dadc0.zip | |
wireless: Use eth_<foo>_addr instead of memset
Use the built-in function instead of memset.
Miscellanea:
Add #include <linux/etherdevice.h> where appropriate
Use ETH_ALEN instead of 6
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/hostap/hostap_info.c')
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/hostap/hostap_info.c b/drivers/net/wireless/hostap/hostap_info.c index de7c4ffec309..7635ac4f6679 100644 --- a/drivers/net/wireless/hostap/hostap_info.c +++ b/drivers/net/wireless/hostap/hostap_info.c @@ -442,7 +442,7 @@ static void handle_info_queue_linkstatus(local_info_t *local) } else { netif_carrier_off(local->dev); netif_carrier_off(local->ddev); - memset(wrqu.ap_addr.sa_data, 0, ETH_ALEN); + eth_zero_addr(wrqu.ap_addr.sa_data); } wrqu.ap_addr.sa_family = ARPHRD_ETHER; |
