Skip to content

Commit

Permalink
sh: Fixup last users of irq_chip->typename
Browse files Browse the repository at this point in the history
The typename member of struct irq_chip was kept for migration purposes
and is obsolete since more than 2 years. Fix up the leftovers.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-sh@vger.kernel.org
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
KAGA-KOKO authored and pmundt committed Nov 18, 2009
1 parent 68fb2e4 commit 648f153
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/sh/kernel/cpu/irq/imask.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ static void unmask_imask_irq(unsigned int irq)
}

static struct irq_chip imask_irq_chip = {
.typename = "SR.IMASK",
.name = "SR.IMASK",
.mask = mask_imask_irq,
.unmask = unmask_imask_irq,
.mask_ack = mask_imask_irq,
Expand Down
2 changes: 1 addition & 1 deletion arch/sh/kernel/cpu/irq/intc-sh5.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ static void mask_and_ack_intc(unsigned int);
static void end_intc_irq(unsigned int irq);

static struct irq_chip intc_irq_type = {
.typename = "INTC",
.name = "INTC",
.startup = startup_intc_irq,
.shutdown = shutdown_intc_irq,
.enable = enable_intc_irq,
Expand Down

0 comments on commit 648f153

Please sign in to comment.