diff options
author | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-04-07 17:53:45 -0400 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-04-13 11:20:04 -0400 |
commit | b86ed368f1f0b19de1918c57e4b056e73d5613a0 (patch) | |
tree | d40101cef67dca2f94745fb168737cfd8074dec0 | |
parent | 78b4a56c28c096a1eb02f1d864eb450eb910e43d (diff) |
Bluetooth: Check return value of hci_recv_stream_fragment()
It may return error and in this case we do add to the stats.
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
-rw-r--r-- | drivers/bluetooth/hci_h4.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/bluetooth/hci_h4.c b/drivers/bluetooth/hci_h4.c index 7b8ad93e2c36..2fcd8b387d69 100644 --- a/drivers/bluetooth/hci_h4.c +++ b/drivers/bluetooth/hci_h4.c | |||
@@ -151,8 +151,13 @@ static inline int h4_check_data_len(struct h4_struct *h4, int len) | |||
151 | /* Recv data */ | 151 | /* Recv data */ |
152 | static int h4_recv(struct hci_uart *hu, void *data, int count) | 152 | static int h4_recv(struct hci_uart *hu, void *data, int count) |
153 | { | 153 | { |
154 | if (hci_recv_stream_fragment(hu->hdev, data, count) < 0) | 154 | int ret; |
155 | |||
156 | ret = hci_recv_stream_fragment(hu->hdev, data, count); | ||
157 | if (ret < 0) { | ||
155 | BT_ERR("Frame Reassembly Failed"); | 158 | BT_ERR("Frame Reassembly Failed"); |
159 | return ret; | ||
160 | } | ||
156 | 161 | ||
157 | return count; | 162 | return count; |
158 | } | 163 | } |