aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/cavium-octeon/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/cavium-octeon/setup.c')
-rw-r--r--arch/mips/cavium-octeon/setup.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/cavium-octeon/setup.c b/arch/mips/cavium-octeon/setup.c
index b394552e5ca..260b2736734 100644
--- a/arch/mips/cavium-octeon/setup.c
+++ b/arch/mips/cavium-octeon/setup.c
@@ -759,11 +759,11 @@ void prom_free_prom_memory(void)
759 : "=r" (insn) : : "$31", "memory"); 759 : "=r" (insn) : : "$31", "memory");
760 760
761 if ((insn >> 26) != 0x33) 761 if ((insn >> 26) != 0x33)
762 panic("No PREF instruction at Core-14449 probe point.\n"); 762 panic("No PREF instruction at Core-14449 probe point.");
763 763
764 if (((insn >> 16) & 0x1f) != 28) 764 if (((insn >> 16) & 0x1f) != 28)
765 panic("Core-14449 WAR not in place (%04x).\n" 765 panic("Core-14449 WAR not in place (%04x).\n"
766 "Please build kernel with proper options (CONFIG_CAVIUM_CN63XXP1).\n", insn); 766 "Please build kernel with proper options (CONFIG_CAVIUM_CN63XXP1).", insn);
767 } 767 }
768#ifdef CONFIG_CAVIUM_DECODE_RSL 768#ifdef CONFIG_CAVIUM_DECODE_RSL
769 cvmx_interrupt_rsl_enable(); 769 cvmx_interrupt_rsl_enable();
@@ -771,7 +771,7 @@ void prom_free_prom_memory(void)
771 /* Add an interrupt handler for general failures. */ 771 /* Add an interrupt handler for general failures. */
772 if (request_irq(OCTEON_IRQ_RML, octeon_rlm_interrupt, IRQF_SHARED, 772 if (request_irq(OCTEON_IRQ_RML, octeon_rlm_interrupt, IRQF_SHARED,
773 "RML/RSL", octeon_rlm_interrupt)) { 773 "RML/RSL", octeon_rlm_interrupt)) {
774 panic("Unable to request_irq(OCTEON_IRQ_RML)\n"); 774 panic("Unable to request_irq(OCTEON_IRQ_RML)");
775 } 775 }
776#endif 776#endif
777} 777}