All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mips: Fix typo in cavium-octeon
@ 2013-04-12  4:49 ` EUNBONG SONG
  0 siblings, 0 replies; 2+ messages in thread
From: EUNBONG SONG @ 2013-04-12  4:49 UTC (permalink / raw)
  To: ralf; +Cc: linux-kernel, linux-mips

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=euc-kr, Size: 1474 bytes --]


I think "CUI2" should be changed to "CIU2", because CIU means Central Intrrupt Unit.

Singed-off-by: EunBong Song<eunb.song@samsung.com>

---
 arch/mips/cavium-octeon/octeon-irq.c           |    2 +-
 arch/mips/include/asm/mach-cavium-octeon/irq.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/mips/cavium-octeon/octeon-irq.c b/arch/mips/cavium-octeon/octeon-irq.c
index 156aa61..52aa9cf 100644
--- a/arch/mips/cavium-octeon/octeon-irq.c
+++ b/arch/mips/cavium-octeon/octeon-irq.c
@@ -1709,7 +1709,7 @@ static void __init octeon_irq_init_ciu2(void)
 	} else
 		panic("Cannot find device node for cavium,octeon-6880-ciu2.");
 
-	/* CUI2 */
+	/* CIU2 */
 	for (i = 0; i < 64; i++)
 		octeon_irq_force_ciu_mapping(ciu_domain, i + OCTEON_IRQ_WORKQ0, 0, i);
 
diff --git a/arch/mips/include/asm/mach-cavium-octeon/irq.h b/arch/mips/include/asm/mach-cavium-octeon/irq.h
index 60fc4c3..77fb610 100644
--- a/arch/mips/include/asm/mach-cavium-octeon/irq.h
+++ b/arch/mips/include/asm/mach-cavium-octeon/irq.h
@@ -15,7 +15,7 @@ enum octeon_irq {
 /* 1 - 8 represent the 8 MIPS standard interrupt sources */
 	OCTEON_IRQ_SW0 = 1,
 	OCTEON_IRQ_SW1,
-/* CIU0, CUI2, CIU4 are 3, 4, 5 */
+/* CIU0, CIU2, CIU4 are 3, 4, 5 */
 	OCTEON_IRQ_5 = 6,
 	OCTEON_IRQ_PERF,
 	OCTEON_IRQ_TIMER,
-- 
1.7.0.4
ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH] mips: Fix typo in cavium-octeon
@ 2013-04-12  4:49 ` EUNBONG SONG
  0 siblings, 0 replies; 2+ messages in thread
From: EUNBONG SONG @ 2013-04-12  4:49 UTC (permalink / raw)
  To: ralf; +Cc: linux-kernel, linux-mips


I think "CUI2" should be changed to "CIU2", because CIU means Central Intrrupt Unit.

Singed-off-by: EunBong Song<eunb.song@samsung.com>

---
 arch/mips/cavium-octeon/octeon-irq.c           |    2 +-
 arch/mips/include/asm/mach-cavium-octeon/irq.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/mips/cavium-octeon/octeon-irq.c b/arch/mips/cavium-octeon/octeon-irq.c
index 156aa61..52aa9cf 100644
--- a/arch/mips/cavium-octeon/octeon-irq.c
+++ b/arch/mips/cavium-octeon/octeon-irq.c
@@ -1709,7 +1709,7 @@ static void __init octeon_irq_init_ciu2(void)
 	} else
 		panic("Cannot find device node for cavium,octeon-6880-ciu2.");
 
-	/* CUI2 */
+	/* CIU2 */
 	for (i = 0; i < 64; i++)
 		octeon_irq_force_ciu_mapping(ciu_domain, i + OCTEON_IRQ_WORKQ0, 0, i);
 
diff --git a/arch/mips/include/asm/mach-cavium-octeon/irq.h b/arch/mips/include/asm/mach-cavium-octeon/irq.h
index 60fc4c3..77fb610 100644
--- a/arch/mips/include/asm/mach-cavium-octeon/irq.h
+++ b/arch/mips/include/asm/mach-cavium-octeon/irq.h
@@ -15,7 +15,7 @@ enum octeon_irq {
 /* 1 - 8 represent the 8 MIPS standard interrupt sources */
 	OCTEON_IRQ_SW0 = 1,
 	OCTEON_IRQ_SW1,
-/* CIU0, CUI2, CIU4 are 3, 4, 5 */
+/* CIU0, CIU2, CIU4 are 3, 4, 5 */
 	OCTEON_IRQ_5 = 6,
 	OCTEON_IRQ_PERF,
 	OCTEON_IRQ_TIMER,
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-04-12  4:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-12  4:49 [PATCH] mips: Fix typo in cavium-octeon EUNBONG SONG
2013-04-12  4:49 ` EUNBONG SONG

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.