Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[MIPS] SNI: MIPS_CPU_IRQ_BASE cleanup

Use MIPS_CPU_IRQ_BASE instead of own define.

Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

authored by

Thomas Bogendoerfer and committed by
Ralf Baechle
f13cc01d 3dac2561

+13 -14
+2 -2
arch/mips/sni/pcimt.c
··· 336 336 u32 pending = (read_c0_cause() & read_c0_status()); 337 337 338 338 if (pending & C_IRQ5) 339 - do_IRQ (SNI_MIPS_IRQ_CPU_BASE + 7); 339 + do_IRQ (MIPS_CPU_IRQ_BASE + 7); 340 340 else if (pending & C_IRQ4) 341 - do_IRQ (SNI_MIPS_IRQ_CPU_BASE + 6); 341 + do_IRQ (MIPS_CPU_IRQ_BASE + 6); 342 342 else if (pending & C_IRQ3) 343 343 pcimt_hwint3(); 344 344 else if (pending & C_IRQ1)
+6 -6
arch/mips/sni/pcit.c
··· 276 276 if (pending & C_IRQ1) 277 277 pcit_hwint1(); 278 278 else if (pending & C_IRQ2) 279 - do_IRQ (SNI_MIPS_IRQ_CPU_BASE + 4); 279 + do_IRQ (MIPS_CPU_IRQ_BASE + 4); 280 280 else if (pending & C_IRQ3) 281 - do_IRQ (SNI_MIPS_IRQ_CPU_BASE + 5); 281 + do_IRQ (MIPS_CPU_IRQ_BASE + 5); 282 282 else if (pending & C_IRQ5) 283 - do_IRQ (SNI_MIPS_IRQ_CPU_BASE + 7); 283 + do_IRQ (MIPS_CPU_IRQ_BASE + 7); 284 284 } 285 285 286 286 static void sni_pcit_hwint_cplus(void) ··· 290 290 if (pending & C_IRQ0) 291 291 pcit_hwint0(); 292 292 else if (pending & C_IRQ2) 293 - do_IRQ (SNI_MIPS_IRQ_CPU_BASE + 4); 293 + do_IRQ (MIPS_CPU_IRQ_BASE + 4); 294 294 else if (pending & C_IRQ3) 295 - do_IRQ (SNI_MIPS_IRQ_CPU_BASE + 5); 295 + do_IRQ (MIPS_CPU_IRQ_BASE + 5); 296 296 else if (pending & C_IRQ5) 297 - do_IRQ (SNI_MIPS_IRQ_CPU_BASE + 7); 297 + do_IRQ (MIPS_CPU_IRQ_BASE + 7); 298 298 } 299 299 300 300 void __init sni_pcit_irq_init(void)
+1 -1
arch/mips/sni/rm200.c
··· 148 148 int irq; 149 149 150 150 if (pending & C_IRQ5) 151 - do_IRQ (SNI_MIPS_IRQ_CPU_BASE + 7); 151 + do_IRQ (MIPS_CPU_IRQ_BASE + 7); 152 152 else if (pending & C_IRQ0) { 153 153 clear_c0_status (IE_IRQ0); 154 154 mask = *(volatile u8 *)SNI_RM200_INT_ENA_REG ^ 0x1f;
+4 -5
include/asm-mips/sni.h
··· 141 141 #define A20R_PT_TIM0_ACK 0xbc050000 142 142 #define A20R_PT_TIM1_ACK 0xbc060000 143 143 144 - #define SNI_MIPS_IRQ_CPU_BASE 16 145 - #define SNI_MIPS_IRQ_CPU_TIMER (SNI_MIPS_IRQ_CPU_BASE+7) 144 + #define SNI_MIPS_IRQ_CPU_TIMER (MIPS_CPU_IRQ_BASE+7) 146 145 147 - #define SNI_A20R_IRQ_BASE SNI_MIPS_IRQ_CPU_BASE 146 + #define SNI_A20R_IRQ_BASE MIPS_CPU_IRQ_BASE 148 147 #define SNI_A20R_IRQ_TIMER (SNI_A20R_IRQ_BASE+5) 149 148 150 149 #define SNI_DS1216_A20R_BASE 0xbc081ffc ··· 154 155 #define SNI_PCIT_INT_START 24 155 156 #define SNI_PCIT_INT_END 30 156 157 157 - #define PCIT_IRQ_ETHERNET (SNI_MIPS_IRQ_CPU_BASE + 5) 158 + #define PCIT_IRQ_ETHERNET (MIPS_CPU_IRQ_BASE + 5) 158 159 #define PCIT_IRQ_INTA (SNI_PCIT_INT_START + 0) 159 160 #define PCIT_IRQ_INTB (SNI_PCIT_INT_START + 1) 160 161 #define PCIT_IRQ_INTC (SNI_PCIT_INT_START + 2) ··· 179 180 #define PCIMT_IRQ_EISA 29 180 181 #define PCIMT_IRQ_SCSI 30 181 182 182 - #define PCIMT_IRQ_ETHERNET (SNI_MIPS_IRQ_CPU_BASE+6) 183 + #define PCIMT_IRQ_ETHERNET (MIPS_CPU_IRQ_BASE+6) 183 184 184 185 #if 0 185 186 #define PCIMT_IRQ_TEMPERATURE 24