Commit 348d4994 authored by Mitch Williams's avatar Mitch Williams Committed by Jeff Kirsher

i40evf: make comparisons consistent

Most of the null-checking in this driver is of the style if (!foo),
except these few. Make these checks consistent with the rest of the
code.

Change-ID: I991924f34072fa607a1b626a8b3f1fa5195d43e9
Reported-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarMitch Williams <mitch.a.williams@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 75a64435
...@@ -669,9 +669,9 @@ i40evf_vlan_filter *i40evf_add_vlan(struct i40evf_adapter *adapter, u16 vlan) ...@@ -669,9 +669,9 @@ i40evf_vlan_filter *i40evf_add_vlan(struct i40evf_adapter *adapter, u16 vlan)
struct i40evf_vlan_filter *f; struct i40evf_vlan_filter *f;
f = i40evf_find_vlan(adapter, vlan); f = i40evf_find_vlan(adapter, vlan);
if (NULL == f) { if (!f) {
f = kzalloc(sizeof(*f), GFP_ATOMIC); f = kzalloc(sizeof(*f), GFP_ATOMIC);
if (NULL == f) if (!f)
return NULL; return NULL;
f->vlan = vlan; f->vlan = vlan;
...@@ -774,9 +774,9 @@ i40evf_mac_filter *i40evf_add_filter(struct i40evf_adapter *adapter, ...@@ -774,9 +774,9 @@ i40evf_mac_filter *i40evf_add_filter(struct i40evf_adapter *adapter,
udelay(1); udelay(1);
f = i40evf_find_filter(adapter, macaddr); f = i40evf_find_filter(adapter, macaddr);
if (NULL == f) { if (!f) {
f = kzalloc(sizeof(*f), GFP_ATOMIC); f = kzalloc(sizeof(*f), GFP_ATOMIC);
if (NULL == f) { if (!f) {
clear_bit(__I40EVF_IN_CRITICAL_TASK, clear_bit(__I40EVF_IN_CRITICAL_TASK,
&adapter->crit_section); &adapter->crit_section);
return NULL; return NULL;
...@@ -2138,7 +2138,7 @@ static void i40evf_init_task(struct work_struct *work) ...@@ -2138,7 +2138,7 @@ static void i40evf_init_task(struct work_struct *work)
ether_addr_copy(netdev->perm_addr, adapter->hw.mac.addr); ether_addr_copy(netdev->perm_addr, adapter->hw.mac.addr);
f = kzalloc(sizeof(*f), GFP_ATOMIC); f = kzalloc(sizeof(*f), GFP_ATOMIC);
if (NULL == f) if (!f)
goto err_sw_init; goto err_sw_init;
ether_addr_copy(f->macaddr, adapter->hw.mac.addr); ether_addr_copy(f->macaddr, adapter->hw.mac.addr);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment