Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

alpha: Fix RTC interrupt setup.

Following commit 091738a266fc ("genirq: Remove real old transition
functions") we removed an automatic conversion of no_irq_chip to
dummy_irq_chip. This change needs to be propagated back into the alpha
backend.

Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Richard Henderson and committed by
Linus Torvalds
61813188 280da4e4

+1 -1
+1 -1
arch/alpha/kernel/irq_alpha.c
··· 228 228 void __init 229 229 init_rtc_irq(void) 230 230 { 231 - irq_set_chip_and_handler_name(RTC_IRQ, &no_irq_chip, 231 + irq_set_chip_and_handler_name(RTC_IRQ, &dummy_irq_chip, 232 232 handle_simple_irq, "RTC"); 233 233 setup_irq(RTC_IRQ, &timer_irqaction); 234 234 }