diff options
author | Prasanna Karthik <mkarthi3@visteon.com> | 2015-09-25 05:02:18 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-09-25 10:31:36 -0400 |
commit | 7a1dc788e5c754685e3491c637875d8368bea42d (patch) | |
tree | 360c7f3dd34644ca519bbe519710c022f029fa88 /drivers/bluetooth/bt3c_cs.c | |
parent | 54b5b34eded2f068e8db181dec78be07b288dcfc (diff) |
Bluetooth: bt3c_cs: Comparison to NULL re-written
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>
Diffstat (limited to 'drivers/bluetooth/bt3c_cs.c')
-rw-r--r-- | drivers/bluetooth/bt3c_cs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c index 772a2770710c..b8f4b63175e7 100644 --- a/drivers/bluetooth/bt3c_cs.c +++ b/drivers/bluetooth/bt3c_cs.c | |||
@@ -233,7 +233,7 @@ static void bt3c_receive(struct bt3c_info *info) | |||
233 | info->hdev->stat.byte_rx++; | 233 | info->hdev->stat.byte_rx++; |
234 | 234 | ||
235 | /* Allocate packet */ | 235 | /* Allocate packet */ |
236 | if (info->rx_skb == NULL) { | 236 | if (!info->rx_skb) { |
237 | info->rx_state = RECV_WAIT_PACKET_TYPE; | 237 | info->rx_state = RECV_WAIT_PACKET_TYPE; |
238 | info->rx_count = 0; | 238 | info->rx_count = 0; |
239 | info->rx_skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC); | 239 | info->rx_skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC); |