diff options
author | Gustavo F. Padovan <padovan@profusion.mobi> | 2010-05-01 15:15:35 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-05-10 03:28:45 -0400 |
commit | 0d861d8b8edd139a9b291cb262d08dec8dc3922d (patch) | |
tree | 2b917b96e349baad182c49b15129c43b6a7b8ca5 /net/bluetooth/sco.c | |
parent | 4f7ac1814ef6f0773e57ffd159a1dd57a3c80521 (diff) |
Bluetooth: Make hci_send_sco() void
It also removes an unneeded check for the MTU. The check is done before
on sco_send_frame()
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Reviewed-by: João Paulo Rechi Vita <jprvita@profusion.mobi>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/sco.c')
-rw-r--r-- | net/bluetooth/sco.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/bluetooth/sco.c b/net/bluetooth/sco.c index b406d3eff53a..541b26efb724 100644 --- a/net/bluetooth/sco.c +++ b/net/bluetooth/sco.c | |||
@@ -249,8 +249,7 @@ static inline int sco_send_frame(struct sock *sk, struct msghdr *msg, int len) | |||
249 | goto fail; | 249 | goto fail; |
250 | } | 250 | } |
251 | 251 | ||
252 | if ((err = hci_send_sco(conn->hcon, skb)) < 0) | 252 | hci_send_sco(conn->hcon, skb); |
253 | return err; | ||
254 | 253 | ||
255 | return count; | 254 | return count; |
256 | 255 | ||