aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/hvc_console.c
diff options
context:
space:
mode:
authorHendrik Brueckner <brueckner@linux.vnet.ibm.com>2008-10-13 19:12:48 -0400
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2008-10-21 19:59:54 -0400
commitfc362e2e0efd8b652ebfb409a4e43e6189c04f6f (patch)
tree9cffc84bcc4e615ee08f0f47ff58a7131b55194a /drivers/char/hvc_console.c
parenta02efb906d12c9d4eb2ab7c59049ba9545e5412d (diff)
hvc_console: Add a hangup notifier for backends
I have added a hangup notifier that can be used by hvc console backends to handle a tty hangup. The default irq hangup notifier calls the notifier_del_irq() for compatibility. Acked-by: Christian Borntraeger <borntraeger@de.ibm.com> Signed-off-by: Hendrik Brueckner <brueckner@linux.vnet.ibm.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'drivers/char/hvc_console.c')
-rw-r--r--drivers/char/hvc_console.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/hvc_console.c b/drivers/char/hvc_console.c
index bf70450a49cc..5c9750ed0bc2 100644
--- a/drivers/char/hvc_console.c
+++ b/drivers/char/hvc_console.c
@@ -418,8 +418,8 @@ static void hvc_hangup(struct tty_struct *tty)
418 418
419 spin_unlock_irqrestore(&hp->lock, flags); 419 spin_unlock_irqrestore(&hp->lock, flags);
420 420
421 if (hp->ops->notifier_del) 421 if (hp->ops->notifier_hangup)
422 hp->ops->notifier_del(hp, hp->data); 422 hp->ops->notifier_hangup(hp, hp->data);
423 423
424 while(temp_open_count) { 424 while(temp_open_count) {
425 --temp_open_count; 425 --temp_open_count;