mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 02:21:47 +00:00
Staging: rtl8712: Fix warning prefer eth_broadcast_addr() over memset()
This patch is to the rtl871x_ioctl_linux.c that fixes up following warning by checkpatch.pl: -Prefer eth_broadcast_addr() over memset() Signed-off-by: Punit Vara <punitvara@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a90391e4c1
commit
e904cc8f57
@ -1785,8 +1785,7 @@ static int r871x_wx_set_enc_ext(struct net_device *dev,
|
||||
if (param == NULL)
|
||||
return -ENOMEM;
|
||||
param->cmd = IEEE_CMD_SET_ENCRYPTION;
|
||||
memset(param->sta_addr, 0xff, ETH_ALEN);
|
||||
|
||||
eth_broadcast_addr(param->sta_addr);
|
||||
strncpy((char *)param->u.crypt.alg, alg_name, IEEE_CRYPT_ALG_NAME_LEN);
|
||||
if (pext->ext_flags & IW_ENCODE_EXT_GROUP_KEY)
|
||||
param->u.crypt.set_tx = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user