Return-path: Received: from eusmtp01.atmel.com ([212.144.249.243]:11463 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751194AbbLUFQx (ORCPT ); Mon, 21 Dec 2015 00:16:53 -0500 From: Glen Lee To: CC: , , , , , , , , Subject: [PATCH RESEND 18/46] staging: wilc1000: linux_wlan_spi.c: fix NULL comparison style Date: Mon, 21 Dec 2015 14:18:22 +0900 Message-ID: <1450675130-17866-19-git-send-email-glen.lee@atmel.com> (sfid-20151221_063059_024812_41A81979) In-Reply-To: <1450675130-17866-1-git-send-email-glen.lee@atmel.com> References: <1450675130-17866-1-git-send-email-glen.lee@atmel.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-wireless-owner@vger.kernel.org List-ID: This patch fixes checkpatch CHECK:comparison to NULL could be written "b". Signed-off-by: Glen Lee --- drivers/staging/wilc1000/linux_wlan_spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/wilc1000/linux_wlan_spi.c b/drivers/staging/wilc1000/linux_wlan_spi.c index 190243a..6111405 100644 --- a/drivers/staging/wilc1000/linux_wlan_spi.c +++ b/drivers/staging/wilc1000/linux_wlan_spi.c @@ -72,7 +72,7 @@ int wilc_spi_write(struct wilc *wilc, u8 *b, u32 len) int ret; struct spi_message msg; - if (len > 0 && b != NULL) { + if (len > 0 && b) { struct spi_transfer tr = { .tx_buf = b, .len = len, -- 1.9.1