]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - kernel/irq/handle.c
[PATCH] genirq: cleanup: reduce irq_desc_t use, mark it obsolete
[karo-tx-linux.git] / kernel / irq / handle.c
index f9c33a86cbdf1dc40006ce1c97df59ddad569a7a..8eda1005d10a9d34acde15a6ed89b798f6450e47 100644 (file)
@@ -28,7 +28,7 @@
  *
  * Controller mappings for all interrupt sources:
  */
-irq_desc_t irq_desc[NR_IRQS] __cacheline_aligned = {
+struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned = {
        [0 ... NR_IRQS-1] = {
                .status = IRQ_DISABLED,
                .chip = &no_irq_type,
@@ -110,7 +110,7 @@ irqreturn_t handle_IRQ_event(unsigned int irq, struct pt_regs *regs,
  */
 fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs)
 {
-       irq_desc_t *desc = irq_desc + irq;
+       struct irq_desc *desc = irq_desc + irq;
        struct irqaction *action;
        unsigned int status;