Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 36809
b: refs/heads/master
c: 7785162
h: refs/heads/master
i:
  36807: 5eb766e
v: v3
  • Loading branch information
Marcel Holtmann authored and David S. Miller committed Sep 29, 2006
1 parent 9bccdb9 commit 80321c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 62ae15919b6db6644049338296624fbd724c0054
refs/heads/master: 7785162cf2baf7c6c1e4ad8ae5888f85fcc5febc
13 changes: 5 additions & 8 deletions trunk/drivers/bluetooth/hci_ldisc.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,15 +241,11 @@ static int hci_uart_send_frame(struct sk_buff *skb)

static void hci_uart_destruct(struct hci_dev *hdev)
{
struct hci_uart *hu;

if (!hdev)
return;

BT_DBG("%s", hdev->name);

hu = (struct hci_uart *) hdev->driver_data;
kfree(hu);
kfree(hdev->driver_data);
}

/* ------ LDISC part ------ */
Expand All @@ -272,7 +268,7 @@ static int hci_uart_tty_open(struct tty_struct *tty)
return -EEXIST;

if (!(hu = kzalloc(sizeof(struct hci_uart), GFP_KERNEL))) {
BT_ERR("Can't allocate controll structure");
BT_ERR("Can't allocate control structure");
return -ENFILE;
}

Expand Down Expand Up @@ -360,7 +356,7 @@ static void hci_uart_tty_wakeup(struct tty_struct *tty)
*
* Return Value: None
*/
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)
{
struct hci_uart *hu = (void *)tty->disc_data;

Expand All @@ -375,7 +371,8 @@ static void hci_uart_tty_receive(struct tty_struct *tty, const __u8 *data, char
hu->hdev->stat.byte_rx += count;
spin_unlock(&hu->rx_lock);

if (test_and_clear_bit(TTY_THROTTLED,&tty->flags) && tty->driver->unthrottle)
if (test_and_clear_bit(TTY_THROTTLED, &tty->flags) &&
tty->driver->unthrottle)
tty->driver->unthrottle(tty);
}

Expand Down

0 comments on commit 80321c3

Please sign in to comment.