diff options
| author | Paul Mundt <lethal@linux-sh.org> | 2006-10-19 04:32:56 -0400 |
|---|---|---|
| committer | Paul Mundt <lethal@linux-sh.org> | 2006-10-19 04:32:56 -0400 |
| commit | 709bc44c31db4eeeec7dcf7d3f3fefd057adf7fb (patch) | |
| tree | a2673e8c2514ca2c5007050b7f95292f52e56c97 /arch/sh/kernel/cpu | |
| parent | c2a560f5334c55da1e8bfa17586cc1d4e7f8ed85 (diff) | |
sh: Updates for irq-flow-type naming changes.
handle_irq_name() and set_irq_chip_and_handler() disappeared,
update for desc->name and set_irq_chip_and_handler_name() use.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/cpu')
| -rw-r--r-- | arch/sh/kernel/cpu/irq/intc2.c | 5 | ||||
| -rw-r--r-- | arch/sh/kernel/cpu/irq/ipr.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/arch/sh/kernel/cpu/irq/intc2.c b/arch/sh/kernel/cpu/irq/intc2.c index d4b2bb7e08c7..212884adca03 100644 --- a/arch/sh/kernel/cpu/irq/intc2.c +++ b/arch/sh/kernel/cpu/irq/intc2.c | |||
| @@ -31,7 +31,7 @@ static void enable_intc2_irq(unsigned int irq) | |||
| 31 | } | 31 | } |
| 32 | 32 | ||
| 33 | static struct irq_chip intc2_irq_chip = { | 33 | static struct irq_chip intc2_irq_chip = { |
| 34 | .typename = "intc2", | 34 | .name = "INTC2", |
| 35 | .mask = disable_intc2_irq, | 35 | .mask = disable_intc2_irq, |
| 36 | .unmask = enable_intc2_irq, | 36 | .unmask = enable_intc2_irq, |
| 37 | .mask_ack = disable_intc2_irq, | 37 | .mask_ack = disable_intc2_irq, |
| @@ -64,7 +64,8 @@ void make_intc2_irq(struct intc2_data *p) | |||
| 64 | 64 | ||
| 65 | local_irq_restore(flags); | 65 | local_irq_restore(flags); |
| 66 | 66 | ||
| 67 | set_irq_chip_and_handler(p->irq, &intc2_irq_chip, handle_level_irq); | 67 | set_irq_chip_and_handler_name(p->irq, &intc2_irq_chip, |
| 68 | handle_level_irq, "level"); | ||
| 68 | set_irq_chip_data(p->irq, p); | 69 | set_irq_chip_data(p->irq, p); |
| 69 | 70 | ||
| 70 | enable_intc2_irq(p->irq); | 71 | enable_intc2_irq(p->irq); |
diff --git a/arch/sh/kernel/cpu/irq/ipr.c b/arch/sh/kernel/cpu/irq/ipr.c index 8944abdf6e1c..f7997312ef98 100644 --- a/arch/sh/kernel/cpu/irq/ipr.c +++ b/arch/sh/kernel/cpu/irq/ipr.c | |||
| @@ -44,7 +44,7 @@ static void enable_ipr_irq(unsigned int irq) | |||
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | static struct irq_chip ipr_irq_chip = { | 46 | static struct irq_chip ipr_irq_chip = { |
| 47 | .name = "ipr", | 47 | .name = "IPR", |
| 48 | .mask = disable_ipr_irq, | 48 | .mask = disable_ipr_irq, |
| 49 | .unmask = enable_ipr_irq, | 49 | .unmask = enable_ipr_irq, |
| 50 | .mask_ack = disable_ipr_irq, | 50 | .mask_ack = disable_ipr_irq, |
| @@ -60,7 +60,8 @@ void make_ipr_irq(unsigned int irq, unsigned int addr, int pos, int priority) | |||
| 60 | ipr_data.shift = pos*4; /* POSition (0-3) x 4 means shift */ | 60 | ipr_data.shift = pos*4; /* POSition (0-3) x 4 means shift */ |
| 61 | ipr_data.priority = priority; | 61 | ipr_data.priority = priority; |
| 62 | 62 | ||
| 63 | set_irq_chip_and_handler(irq, &ipr_irq_chip, handle_level_irq); | 63 | set_irq_chip_and_handler_name(irq, &ipr_irq_chip, |
| 64 | handle_level_irq, "level"); | ||
| 64 | set_irq_chip_data(irq, &ipr_data); | 65 | set_irq_chip_data(irq, &ipr_data); |
| 65 | 66 | ||
| 66 | enable_ipr_irq(irq); | 67 | enable_ipr_irq(irq); |
