diff options
author | Gustavo F. Padovan <padovan@profusion.mobi> | 2010-05-01 15:15:34 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-05-10 03:28:45 -0400 |
commit | fe1aff710756ac73c455d214845c74e304d0e966 (patch) | |
tree | b561c36d75a6b190ba95aab5b5234913af844d74 /drivers/bluetooth/hci_ll.c | |
parent | 3ee943728fff536edaf8f59faa58aaa1aa7366e3 (diff) |
Bluetooth: Fix return value when bt_skb_alloc fails
Set the proper error(ENOMEM), instead of just return 0.
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth/hci_ll.c')
-rw-r--r-- | drivers/bluetooth/hci_ll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/hci_ll.c b/drivers/bluetooth/hci_ll.c index 5c65014635be..91e44df84486 100644 --- a/drivers/bluetooth/hci_ll.c +++ b/drivers/bluetooth/hci_ll.c | |||
@@ -491,7 +491,7 @@ static int ll_recv(struct hci_uart *hu, void *data, int count) | |||
491 | BT_ERR("Can't allocate mem for new packet"); | 491 | BT_ERR("Can't allocate mem for new packet"); |
492 | ll->rx_state = HCILL_W4_PACKET_TYPE; | 492 | ll->rx_state = HCILL_W4_PACKET_TYPE; |
493 | ll->rx_count = 0; | 493 | ll->rx_count = 0; |
494 | return 0; | 494 | return -ENOMEM; |
495 | } | 495 | } |
496 | 496 | ||
497 | ll->rx_skb->dev = (void *) hu->hdev; | 497 | ll->rx_skb->dev = (void *) hu->hdev; |