All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Bluetooth:btmrvl_main : Comparison to NULL re-written
@ 2015-09-25  9:03 Mutharaju, Prasanna (P.)
  2015-09-25 15:03 ` Marcel Holtmann
  0 siblings, 1 reply; 2+ messages in thread
From: Mutharaju, Prasanna (P.) @ 2015-09-25  9:03 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_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/bluetooth/btmrvl_main.c b/drivers/bluetooth/btmrvl_mai=
n.c
index bc110f6..050ad6b 100644
--- a/drivers/bluetooth/btmrvl_main.c
+++ b/drivers/bluetooth/btmrvl_main.c
@@ -184,7 +184,7 @@ static int btmrvl_send_sync_cmd(struct btmrvl_private *=
priv, u16 opcode,
 	}
=20
 	skb =3D bt_skb_alloc(HCI_COMMAND_HDR_SIZE + len, GFP_ATOMIC);
-	if (skb =3D=3D NULL) {
+	if (!skb) {
 		BT_ERR("No free skb");
 		return -ENOMEM;
 	}
--=20
1.9.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Bluetooth:btmrvl_main : Comparison to NULL re-written
  2015-09-25  9:03 [PATCH] Bluetooth:btmrvl_main : Comparison to NULL re-written Mutharaju, Prasanna (P.)
@ 2015-09-25 15:03 ` Marcel Holtmann
  0 siblings, 0 replies; 2+ messages in thread
From: Marcel Holtmann @ 2015-09-25 15:03 UTC (permalink / raw)
  To: Mutharaju, Prasanna (P.)
  Cc: Gustavo F. Padovan, Johan Hedberg,
	linux-bluetooth@vger.kernel.org

Hi Prasanna,

> NOT NULL comparison modified to be readable, reported
> by checkpatch.
> 
> Signed-off-by: Prasanna Karthik <mkarthi3@visteon.com>
> ---
> drivers/bluetooth/btmrvl_main.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)

both patches have been applied to bluetooth-next tree.

Regards

Marcel


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-09-25 15:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-25  9:03 [PATCH] Bluetooth:btmrvl_main : Comparison to NULL re-written Mutharaju, Prasanna (P.)
2015-09-25 15:03 ` Marcel Holtmann

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.