diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-03-10 10:45:54 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-03-11 02:11:34 -0400 |
commit | 97f7d6bcc10687ff79632da338646a266dd590fc (patch) | |
tree | e6eddc6e91077e2e15c23664e44b74c2c37f612e /arch/powerpc/kernel/irq.c | |
parent | af9c7249071bf862781df06eb24456cab763dc7d (diff) |
powerpc/irq: Convert obsolete irq_desc_t to struct irq_desc
Impact: cleanup
Convert the last remaining users.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
CC: Benjamin Herrenschmidt <benh@kernel.crashing.org>
CC: linuxppc-dev@ozlabs.org
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/irq.c')
-rw-r--r-- | arch/powerpc/kernel/irq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c index 23b8b5e36f98..48ea2008b20d 100644 --- a/arch/powerpc/kernel/irq.c +++ b/arch/powerpc/kernel/irq.c | |||
@@ -171,7 +171,7 @@ int show_interrupts(struct seq_file *p, void *v) | |||
171 | { | 171 | { |
172 | int i = *(loff_t *)v, j; | 172 | int i = *(loff_t *)v, j; |
173 | struct irqaction *action; | 173 | struct irqaction *action; |
174 | irq_desc_t *desc; | 174 | struct irq_desc *desc; |
175 | unsigned long flags; | 175 | unsigned long flags; |
176 | 176 | ||
177 | if (i == 0) { | 177 | if (i == 0) { |
@@ -1038,7 +1038,7 @@ arch_initcall(irq_late_init); | |||
1038 | static int virq_debug_show(struct seq_file *m, void *private) | 1038 | static int virq_debug_show(struct seq_file *m, void *private) |
1039 | { | 1039 | { |
1040 | unsigned long flags; | 1040 | unsigned long flags; |
1041 | irq_desc_t *desc; | 1041 | struct irq_desc *desc; |
1042 | const char *p; | 1042 | const char *p; |
1043 | char none[] = "none"; | 1043 | char none[] = "none"; |
1044 | int i; | 1044 | int i; |