diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2005-06-23 03:10:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-23 12:45:36 -0400 |
commit | 64ccd715d3cf498318b14b646ce5f97e7ab15bb5 (patch) | |
tree | b43bdaeec1b1175fe80ffe3648b1a98a2e21317b /drivers/bluetooth/hci_ldisc.c | |
parent | bfb07599da289881d3bcbb601a110e997fc7444b (diff) |
[PATCH] Convert users to tty_unregister_ldisc()
tty_register_ldisc(N_FOO, NULL) => tty_unregister_ldisc(N_FOO)
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/bluetooth/hci_ldisc.c')
-rw-r--r-- | drivers/bluetooth/hci_ldisc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/hci_ldisc.c b/drivers/bluetooth/hci_ldisc.c index 9075bbb56ad4..f766bc22c6bb 100644 --- a/drivers/bluetooth/hci_ldisc.c +++ b/drivers/bluetooth/hci_ldisc.c | |||
@@ -576,7 +576,7 @@ static void __exit hci_uart_exit(void) | |||
576 | #endif | 576 | #endif |
577 | 577 | ||
578 | /* Release tty registration of line discipline */ | 578 | /* Release tty registration of line discipline */ |
579 | if ((err = tty_register_ldisc(N_HCI, NULL))) | 579 | if ((err = tty_unregister_ldisc(N_HCI))) |
580 | BT_ERR("Can't unregister HCI line discipline (%d)", err); | 580 | BT_ERR("Can't unregister HCI line discipline (%d)", err); |
581 | } | 581 | } |
582 | 582 | ||