]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Bluetooth: bt3c_cs: Comparison to NULL re-written
authorPrasanna Karthik <mkarthi3@visteon.com>
Fri, 25 Sep 2015 09:02:18 +0000 (09:02 +0000)
committerMarcel Holtmann <marcel@holtmann.org>
Fri, 25 Sep 2015 14:31:36 +0000 (16:31 +0200)
NOT NULL comparison modified to be readable, reported
by checkpatch.

Signed-off-by: Prasanna Karthik <mkarthi3@visteon.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
drivers/bluetooth/bt3c_cs.c

index 772a2770710c7b7728dc529e4671d8f792922ca0..b8f4b63175e7c3d307f3c261be7bad84f604d320 100644 (file)
@@ -233,7 +233,7 @@ static void bt3c_receive(struct bt3c_info *info)
                info->hdev->stat.byte_rx++;
 
                /* Allocate packet */
-               if (info->rx_skb == NULL) {
+               if (!info->rx_skb) {
                        info->rx_state = RECV_WAIT_PACKET_TYPE;
                        info->rx_count = 0;
                        info->rx_skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC);