mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 13:41:30 +00:00
[MIPS] Eleminate interrupt migration helper use.
> #define hw_interrupt_type irq_chip > typedef struct irq_chip hw_irq_controller; > #define no_irq_type no_irq_chip > typedef struct irq_desc irq_desc_t; Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
e1e80b4d24
commit
94dee171df
39 changed files with 95 additions and 95 deletions
|
@ -94,7 +94,7 @@ static void mips_cpu_irq_end(unsigned int irq)
|
|||
unmask_mips_irq(irq);
|
||||
}
|
||||
|
||||
static hw_irq_controller mips_cpu_irq_controller = {
|
||||
static struct irq_chip mips_cpu_irq_controller = {
|
||||
.typename = "MIPS",
|
||||
.startup = mips_cpu_irq_startup,
|
||||
.shutdown = mips_cpu_irq_shutdown,
|
||||
|
@ -140,7 +140,7 @@ static void mips_mt_cpu_irq_ack(unsigned int irq)
|
|||
|
||||
#define mips_mt_cpu_irq_end mips_cpu_irq_end
|
||||
|
||||
static hw_irq_controller mips_mt_cpu_irq_controller = {
|
||||
static struct irq_chip mips_mt_cpu_irq_controller = {
|
||||
.typename = "MIPS",
|
||||
.startup = mips_mt_cpu_irq_startup,
|
||||
.shutdown = mips_mt_cpu_irq_shutdown,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue