|
@@ -359,6 +359,7 @@ static void hci_uart_tty_wakeup(struct tty_struct *tty)
|
|
*/
|
|
*/
|
|
static void hci_uart_tty_receive(struct tty_struct *tty, const u8 *data, char *flags, int count)
|
|
static void hci_uart_tty_receive(struct tty_struct *tty, const u8 *data, char *flags, int count)
|
|
{
|
|
{
|
|
|
|
+ int ret;
|
|
struct hci_uart *hu = (void *)tty->disc_data;
|
|
struct hci_uart *hu = (void *)tty->disc_data;
|
|
|
|
|
|
if (!hu || tty != hu->tty)
|
|
if (!hu || tty != hu->tty)
|
|
@@ -368,8 +369,9 @@ static void hci_uart_tty_receive(struct tty_struct *tty, const u8 *data, char *f
|
|
return;
|
|
return;
|
|
|
|
|
|
spin_lock(&hu->rx_lock);
|
|
spin_lock(&hu->rx_lock);
|
|
- hu->proto->recv(hu, (void *) data, count);
|
|
|
|
- hu->hdev->stat.byte_rx += count;
|
|
|
|
|
|
+ ret = hu->proto->recv(hu, (void *) data, count);
|
|
|
|
+ if (ret > 0)
|
|
|
|
+ hu->hdev->stat.byte_rx += count;
|
|
spin_unlock(&hu->rx_lock);
|
|
spin_unlock(&hu->rx_lock);
|
|
|
|
|
|
tty_unthrottle(tty);
|
|
tty_unthrottle(tty);
|