mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
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>
This commit is contained in:
parent
98589c419d
commit
2d5f6feca9
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user