aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/hvc_irq.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/char/hvc_irq.c')
-rw-r--r--drivers/char/hvc_irq.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/char/hvc_irq.c b/drivers/char/hvc_irq.c
index 73a59cdb8947..d09e5688d449 100644
--- a/drivers/char/hvc_irq.c
+++ b/drivers/char/hvc_irq.c
@@ -42,3 +42,8 @@ void notifier_del_irq(struct hvc_struct *hp, int irq)
42 free_irq(irq, hp); 42 free_irq(irq, hp);
43 hp->irq_requested = 0; 43 hp->irq_requested = 0;
44} 44}
45
46void notifier_hangup_irq(struct hvc_struct *hp, int irq)
47{
48 notifier_del_irq(hp, irq);
49}