]> git.karo-electronics.de Git - mv-sheeva.git/blobdiff - arch/alpha/kernel/irq_alpha.c
alpha: irq: Remove pointless irq status manipulation
[mv-sheeva.git] / arch / alpha / kernel / irq_alpha.c
index 4c8bb374eb0a288d03d2cf5ad124e914638527f2..411ca11d0a18172ba63523acc8170d337e7dadd3 100644 (file)
@@ -219,30 +219,17 @@ process_mcheck_info(unsigned long vector, unsigned long la_ptr,
  * processed by PALcode, and comes in via entInt vector 1.
  */
 
-static void rtc_enable_disable(unsigned int irq) { }
-static unsigned int rtc_startup(unsigned int irq) { return 0; }
-
 struct irqaction timer_irqaction = {
        .handler        = timer_interrupt,
        .flags          = IRQF_DISABLED,
        .name           = "timer",
 };
 
-static struct irq_chip rtc_irq_type = {
-       .name           = "RTC",
-       .startup        = rtc_startup,
-       .shutdown       = rtc_enable_disable,
-       .enable         = rtc_enable_disable,
-       .disable        = rtc_enable_disable,
-       .ack            = rtc_enable_disable,
-       .end            = rtc_enable_disable,
-};
-
 void __init
 init_rtc_irq(void)
 {
-       irq_desc[RTC_IRQ].status = IRQ_DISABLED;
-       irq_desc[RTC_IRQ].chip = &rtc_irq_type;
+       set_irq_chip_and_handler_name(RTC_IRQ, &no_irq_chip,
+                                     handle_simple_irq, "RTC");
        setup_irq(RTC_IRQ, &timer_irqaction);
 }