mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-26 04:35:01 +00:00
staging: wilc1000: replaces memcmp with ether_addr_equal_unaligned
This patch replaces memcmp with ether_addr_equal_unaligned. Warning reported by checkpatch.pl - Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp() Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e944ad751f
commit
fa63394152
@ -259,10 +259,12 @@ static struct net_device *get_if_handler(struct wilc *wilc, u8 *mac_header)
|
||||
|
||||
for (i = 0; i < wilc->vif_num; i++) {
|
||||
if (wilc->vif[i]->mode == STATION_MODE)
|
||||
if (!memcmp(bssid, wilc->vif[i]->bssid, ETH_ALEN))
|
||||
if (ether_addr_equal_unaligned(bssid,
|
||||
wilc->vif[i]->bssid))
|
||||
return wilc->vif[i]->ndev;
|
||||
if (wilc->vif[i]->mode == AP_MODE)
|
||||
if (!memcmp(bssid1, wilc->vif[i]->bssid, ETH_ALEN))
|
||||
if (ether_addr_equal_unaligned(bssid1,
|
||||
wilc->vif[i]->bssid))
|
||||
return wilc->vif[i]->ndev;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user