* [PATCH] Bluetooth:btmrvl_sdio: Comparison to NULL re-written
@ 2015-09-25 9:04 Mutharaju, Prasanna (P.)
0 siblings, 0 replies; only message in thread
From: Mutharaju, Prasanna (P.) @ 2015-09-25 9:04 UTC (permalink / raw)
To: marcel@holtmann.org, gustavo@padovan.org, johan.hedberg@gmail.com
Cc: linux-bluetooth@vger.kernel.org
From: Prasanna Karthik <mkarthi3@visteon.com>
NOT NULL comparison modified to be readable, reported
by checkpatch.
Signed-off-by: Prasanna Karthik <mkarthi3@visteon.com>
---
drivers/bluetooth/btmrvl_sdio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/bluetooth/btmrvl_sdio.c b/drivers/bluetooth/btmrvl_sdi=
o.c
index b9978a7..4487183 100644
--- a/drivers/bluetooth/btmrvl_sdio.c
+++ b/drivers/bluetooth/btmrvl_sdio.c
@@ -619,7 +619,7 @@ static int btmrvl_sdio_card_to_host(struct btmrvl_priva=
te *priv)
=20
/* Allocate buffer */
skb =3D bt_skb_alloc(num_blocks * blksz + BTSDIO_DMA_ALIGN, GFP_ATOMIC);
- if (skb =3D=3D NULL) {
+ if (!skb) {
BT_ERR("No free skb");
ret =3D -ENOMEM;
goto exit;
--=20
1.9.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-09-25 9:04 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-25 9:04 [PATCH] Bluetooth:btmrvl_sdio: Comparison to NULL re-written Mutharaju, Prasanna (P.)
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.