irq_alpha.c (e20800fd5cec2a75639a32e956b1cdc023cb87ce) irq_alpha.c (e74e25929ce4d4f5f5f4bae585b214bacef6960b)
1/*
2 * Alpha specific irq code.
3 */
4
5#include <linux/init.h>
6#include <linux/sched.h>
7#include <linux/irq.h>
8#include <linux/kernel_stat.h>

--- 215 unchanged lines hidden (view full) ---

224
225/*
226 * The special RTC interrupt type. The interrupt itself was
227 * processed by PALcode, and comes in via entInt vector 1.
228 */
229
230struct irqaction timer_irqaction = {
231 .handler = timer_interrupt,
1/*
2 * Alpha specific irq code.
3 */
4
5#include <linux/init.h>
6#include <linux/sched.h>
7#include <linux/irq.h>
8#include <linux/kernel_stat.h>

--- 215 unchanged lines hidden (view full) ---

224
225/*
226 * The special RTC interrupt type. The interrupt itself was
227 * processed by PALcode, and comes in via entInt vector 1.
228 */
229
230struct irqaction timer_irqaction = {
231 .handler = timer_interrupt,
232 .flags = IRQF_DISABLED,
233 .name = "timer",
234};
235
236void __init
237init_rtc_irq(void)
238{
239 irq_set_chip_and_handler_name(RTC_IRQ, &dummy_irq_chip,
240 handle_simple_irq, "RTC");

--- 18 unchanged lines hidden ---
232 .name = "timer",
233};
234
235void __init
236init_rtc_irq(void)
237{
238 irq_set_chip_and_handler_name(RTC_IRQ, &dummy_irq_chip,
239 handle_simple_irq, "RTC");

--- 18 unchanged lines hidden ---