1
0
Fork 0

Staging: slicoss: changes comparisons to NULL in slicoss.c

This is a patch to slicoss.c to change the style of NULL comparisons in
order to remove checkpatch.pl warnings.

Signed-off-by: Ben Marsh <bmarsh94@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Ben Marsh 2016-03-01 11:29:38 +01:00 committed by Greg Kroah-Hartman
parent 98589c419d
commit 2d5f6feca9
1 changed files with 3 additions and 3 deletions

View File

@ -1792,7 +1792,7 @@ static int slic_mcast_add_list(struct adapter *adapter, char *address)
/* Doesn't already exist. Allocate a structure to hold it */
mcaddr = kmalloc(sizeof(*mcaddr), GFP_ATOMIC);
if (mcaddr == NULL)
if (!mcaddr)
return 1;
ether_addr_copy(mcaddr->address, address);
@ -1873,7 +1873,7 @@ static void slic_xmit_fail(struct adapter *adapter,
{
if (adapter->xmitq_full)
netif_stop_queue(adapter->netdev);
if ((cmd == NULL) && (status <= XMIT_FAIL_HOSTCMD_FAIL)) {
if ((!cmd) && (status <= XMIT_FAIL_HOSTCMD_FAIL)) {
switch (status) {
case XMIT_FAIL_LINK_STATE:
dev_err(&adapter->netdev->dev,
@ -2983,7 +2983,7 @@ static u32 slic_card_locate(struct adapter *adapter)
/* Initialize a new card structure if need be */
if (card_hostid == SLIC_HOSTID_DEFAULT) {
card = kzalloc(sizeof(*card), GFP_KERNEL);
if (card == NULL)
if (!card)
return -ENOMEM;
card->next = slic_global.slic_card;