Commit 22372af4 authored by Thomas Gleixner's avatar Thomas Gleixner

Merge branch 'irq/urgent' into rt/irq

Conflicts:
	kernel/irq/manage.c
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parents 5a53f07b 69ab8494
......@@ -777,6 +777,13 @@ __setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new)
spin_unlock_irqrestore(&desc->lock, flags);
/*
* Strictly no need to wake it up, but hung_task complains
* when no hard interrupt wakes the thread up.
*/
if (new->thread)
wake_up_process(new->thread);
register_irq_proc(irq, desc);
new->dir = NULL;
register_handler_proc(irq, new);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment