diff options
author | Valentin Ilie <valentin.ilie@gmail.com> | 2013-08-12 18:46:00 +0300 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2014-03-05 20:52:17 +0200 |
commit | a08b15e66e8ec700992641cf8ec015032e8365c8 (patch) | |
tree | 01554c5c6963be9da6ba573af135ec7a65f8a9d7 /drivers/bluetooth/btuart_cs.c | |
parent | 5981a8821b774ada0be512fd9bad7c241e17657e (diff) | |
download | blackbird-op-linux-a08b15e66e8ec700992641cf8ec015032e8365c8.tar.gz blackbird-op-linux-a08b15e66e8ec700992641cf8ec015032e8365c8.zip |
Bluetooth: Remove assignments in if-statements
Remove assignment in if-statements to be consistent with the coding
style.
Signed-off-by: Valentin Ilie <valentin.ilie@gmail.com>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'drivers/bluetooth/btuart_cs.c')
-rw-r--r-- | drivers/bluetooth/btuart_cs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/bluetooth/btuart_cs.c b/drivers/bluetooth/btuart_cs.c index a03ecc22a561..fb948f02eda5 100644 --- a/drivers/bluetooth/btuart_cs.c +++ b/drivers/bluetooth/btuart_cs.c @@ -149,7 +149,8 @@ static void btuart_write_wakeup(btuart_info_t *info) if (!pcmcia_dev_present(info->p_dev)) return; - if (!(skb = skb_dequeue(&(info->txq)))) + skb = skb_dequeue(&(info->txq)); + if (!skb) break; /* Send frame */ @@ -190,7 +191,8 @@ static void btuart_receive(btuart_info_t *info) if (info->rx_skb == NULL) { info->rx_state = RECV_WAIT_PACKET_TYPE; info->rx_count = 0; - if (!(info->rx_skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC))) { + info->rx_skb = bt_skb_alloc(HCI_MAX_FRAME_SIZE, GFP_ATOMIC); + if (!info->rx_skb) { BT_ERR("Can't allocate mem for new packet"); return; } |