mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
drivers/net: Convert compare_ether_addr to ether_addr_equal
Use the new bool function ether_addr_equal to add some clarity and reduce the likelihood for misuse of compare_ether_addr for sorting. Done via cocci script: $ cat compare_ether_addr.cocci @@ expression a,b; @@ - !compare_ether_addr(a, b) + ether_addr_equal(a, b) @@ expression a,b; @@ - compare_ether_addr(a, b) + !ether_addr_equal(a, b) @@ expression a,b; @@ - !ether_addr_equal(a, b) == 0 + ether_addr_equal(a, b) @@ expression a,b; @@ - !ether_addr_equal(a, b) != 0 + !ether_addr_equal(a, b) @@ expression a,b; @@ - ether_addr_equal(a, b) == 0 + !ether_addr_equal(a, b) @@ expression a,b; @@ - ether_addr_equal(a, b) != 0 + ether_addr_equal(a, b) @@ expression a,b; @@ - !!ether_addr_equal(a, b) + ether_addr_equal(a, b) Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
39f1d94d30
commit
2e42e4747e
31 changed files with 85 additions and 86 deletions
|
@ -1590,8 +1590,8 @@ static void gelic_wl_scan_complete_event(struct gelic_wl_info *wl)
|
|||
found = 0;
|
||||
oldest = NULL;
|
||||
list_for_each_entry(target, &wl->network_list, list) {
|
||||
if (!compare_ether_addr(&target->hwinfo->bssid[2],
|
||||
&scan_info->bssid[2])) {
|
||||
if (ether_addr_equal(&target->hwinfo->bssid[2],
|
||||
&scan_info->bssid[2])) {
|
||||
found = 1;
|
||||
pr_debug("%s: same BBS found scanned list\n",
|
||||
__func__);
|
||||
|
@ -1691,8 +1691,8 @@ struct gelic_wl_scan_info *gelic_wl_find_best_bss(struct gelic_wl_info *wl)
|
|||
|
||||
/* If bss specified, check it only */
|
||||
if (test_bit(GELIC_WL_STAT_BSSID_SET, &wl->stat)) {
|
||||
if (!compare_ether_addr(&scan_info->hwinfo->bssid[2],
|
||||
wl->bssid)) {
|
||||
if (ether_addr_equal(&scan_info->hwinfo->bssid[2],
|
||||
wl->bssid)) {
|
||||
best_bss = scan_info;
|
||||
pr_debug("%s: bssid matched\n", __func__);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue