提交 14823ccb 编写于 作者: D Dmitri Vorobiev 提交者: Ralf Baechle

MIPS: IP22: Small cleanups

The following functions

disable_local1_irq()
disable_local2_irq()
disable_local3_irq()

are needlessly defined global, so make them static. While at it, fix a
whitespace error in the same file.
Signed-off-by: NDmitri Vorobiev <dmitri.vorobiev@movial.fi>
Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
上级 1ba5a176
...@@ -68,7 +68,7 @@ static void enable_local1_irq(unsigned int irq) ...@@ -68,7 +68,7 @@ static void enable_local1_irq(unsigned int irq)
sgint->imask1 |= (1 << (irq - SGINT_LOCAL1)); sgint->imask1 |= (1 << (irq - SGINT_LOCAL1));
} }
void disable_local1_irq(unsigned int irq) static void disable_local1_irq(unsigned int irq)
{ {
sgint->imask1 &= ~(1 << (irq - SGINT_LOCAL1)); sgint->imask1 &= ~(1 << (irq - SGINT_LOCAL1));
} }
...@@ -87,7 +87,7 @@ static void enable_local2_irq(unsigned int irq) ...@@ -87,7 +87,7 @@ static void enable_local2_irq(unsigned int irq)
sgint->cmeimask0 |= (1 << (irq - SGINT_LOCAL2)); sgint->cmeimask0 |= (1 << (irq - SGINT_LOCAL2));
} }
void disable_local2_irq(unsigned int irq) static void disable_local2_irq(unsigned int irq)
{ {
sgint->cmeimask0 &= ~(1 << (irq - SGINT_LOCAL2)); sgint->cmeimask0 &= ~(1 << (irq - SGINT_LOCAL2));
if (!sgint->cmeimask0) if (!sgint->cmeimask0)
...@@ -108,7 +108,7 @@ static void enable_local3_irq(unsigned int irq) ...@@ -108,7 +108,7 @@ static void enable_local3_irq(unsigned int irq)
sgint->cmeimask1 |= (1 << (irq - SGINT_LOCAL3)); sgint->cmeimask1 |= (1 << (irq - SGINT_LOCAL3));
} }
void disable_local3_irq(unsigned int irq) static void disable_local3_irq(unsigned int irq)
{ {
sgint->cmeimask1 &= ~(1 << (irq - SGINT_LOCAL3)); sgint->cmeimask1 &= ~(1 << (irq - SGINT_LOCAL3));
if (!sgint->cmeimask1) if (!sgint->cmeimask1)
...@@ -344,6 +344,6 @@ void __init arch_init_irq(void) ...@@ -344,6 +344,6 @@ void __init arch_init_irq(void)
#ifdef CONFIG_EISA #ifdef CONFIG_EISA
if (ip22_is_fullhouse()) /* Only Indigo-2 has EISA stuff */ if (ip22_is_fullhouse()) /* Only Indigo-2 has EISA stuff */
ip22_eisa_init(); ip22_eisa_init();
#endif #endif
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册