aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-mips/mach-au1x00/au1000.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-10-14 20:07:39 -0400
committerRalf Baechle <ralf@linux-mips.org>2007-10-16 13:23:48 -0400
commit0e6799ed076fb11b3ee0a8bc19018f3410e357b2 (patch)
tree2371520bba00fdc0f9d3eb0bac0934fdc7648916 /include/asm-mips/mach-au1x00/au1000.h
parentd2126e230d3db20ee7f3ef2dc70bb241aafd4f80 (diff)
[MIPS] Alchemy: Get rid of au1xxx_irq_map_t.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/mach-au1x00/au1000.h')
-rw-r--r--include/asm-mips/mach-au1x00/au1000.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-mips/mach-au1x00/au1000.h b/include/asm-mips/mach-au1x00/au1000.h
index 630138f6f918..b37baf8cf624 100644
--- a/include/asm-mips/mach-au1x00/au1000.h
+++ b/include/asm-mips/mach-au1x00/au1000.h
@@ -102,16 +102,16 @@ extern unsigned int get_au1x00_lcd_clock(void);
102/* 102/*
103 * Every board describes its IRQ mapping with this table. 103 * Every board describes its IRQ mapping with this table.
104 */ 104 */
105typedef struct au1xxx_irqmap { 105struct au1xxx_irqmap {
106 int im_irq; 106 int im_irq;
107 int im_type; 107 int im_type;
108 int im_request; 108 int im_request;
109} au1xxx_irq_map_t; 109};
110 110
111/* 111/*
112 * init_IRQ looks for a table with this name. 112 * init_IRQ looks for a table with this name.
113 */ 113 */
114extern au1xxx_irq_map_t au1xxx_irq_map[]; 114extern struct au1xxx_irqmap au1xxx_irq_map[];
115 115
116#endif /* !defined (_LANGUAGE_ASSEMBLY) */ 116#endif /* !defined (_LANGUAGE_ASSEMBLY) */
117 117