Commit 2d5f6fec authored by Ben Marsh's avatar Ben Marsh Committed by Greg Kroah-Hartman
Browse files

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: default avatarBen Marsh <bmarsh94@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 98589c41
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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;