diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2007-01-14 10:07:25 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-02-06 11:53:14 -0500 |
commit | 70d21cdeef6331e67ed87262c894cd6601f0dccc (patch) | |
tree | 0bf2a011953a4794b26e28081d36af5ab43358c2 /arch/mips/sgi-ip22/ip22-int.c | |
parent | ea6e942bea55b574bf2118bce8ee73185e754cfb (diff) |
[MIPS] use name instead of typename for each irq_chip
The "typename" field was obsoleted by the "name" field.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sgi-ip22/ip22-int.c')
-rw-r--r-- | arch/mips/sgi-ip22/ip22-int.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/sgi-ip22/ip22-int.c b/arch/mips/sgi-ip22/ip22-int.c index f3d2ae374c72..b454924aeb56 100644 --- a/arch/mips/sgi-ip22/ip22-int.c +++ b/arch/mips/sgi-ip22/ip22-int.c | |||
@@ -53,7 +53,7 @@ static void disable_local0_irq(unsigned int irq) | |||
53 | } | 53 | } |
54 | 54 | ||
55 | static struct irq_chip ip22_local0_irq_type = { | 55 | static struct irq_chip ip22_local0_irq_type = { |
56 | .typename = "IP22 local 0", | 56 | .name = "IP22 local 0", |
57 | .ack = disable_local0_irq, | 57 | .ack = disable_local0_irq, |
58 | .mask = disable_local0_irq, | 58 | .mask = disable_local0_irq, |
59 | .mask_ack = disable_local0_irq, | 59 | .mask_ack = disable_local0_irq, |
@@ -74,7 +74,7 @@ void disable_local1_irq(unsigned int irq) | |||
74 | } | 74 | } |
75 | 75 | ||
76 | static struct irq_chip ip22_local1_irq_type = { | 76 | static struct irq_chip ip22_local1_irq_type = { |
77 | .typename = "IP22 local 1", | 77 | .name = "IP22 local 1", |
78 | .ack = disable_local1_irq, | 78 | .ack = disable_local1_irq, |
79 | .mask = disable_local1_irq, | 79 | .mask = disable_local1_irq, |
80 | .mask_ack = disable_local1_irq, | 80 | .mask_ack = disable_local1_irq, |
@@ -95,7 +95,7 @@ void disable_local2_irq(unsigned int irq) | |||
95 | } | 95 | } |
96 | 96 | ||
97 | static struct irq_chip ip22_local2_irq_type = { | 97 | static struct irq_chip ip22_local2_irq_type = { |
98 | .typename = "IP22 local 2", | 98 | .name = "IP22 local 2", |
99 | .ack = disable_local2_irq, | 99 | .ack = disable_local2_irq, |
100 | .mask = disable_local2_irq, | 100 | .mask = disable_local2_irq, |
101 | .mask_ack = disable_local2_irq, | 101 | .mask_ack = disable_local2_irq, |
@@ -116,7 +116,7 @@ void disable_local3_irq(unsigned int irq) | |||
116 | } | 116 | } |
117 | 117 | ||
118 | static struct irq_chip ip22_local3_irq_type = { | 118 | static struct irq_chip ip22_local3_irq_type = { |
119 | .typename = "IP22 local 3", | 119 | .name = "IP22 local 3", |
120 | .ack = disable_local3_irq, | 120 | .ack = disable_local3_irq, |
121 | .mask = disable_local3_irq, | 121 | .mask = disable_local3_irq, |
122 | .mask_ack = disable_local3_irq, | 122 | .mask_ack = disable_local3_irq, |