aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/prom_init.c
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2011-12-14 08:55:11 -0500
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2011-12-18 22:41:25 -0500
commit3f53638c805f75989f4b4be07efcfd173cdd5e2d (patch)
treea3759b96bb6ddeda50b5701c33fe2cf0103936e8 /arch/powerpc/kernel/prom_init.c
parent64968f60e73d7b3f9fca1ca5cd985d75b2cbca44 (diff)
powerpc: Fix old bug in prom_init setting of the color
We have an array of 16 entries and a loop of 32 iterations... oops. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/prom_init.c')
-rw-r--r--arch/powerpc/kernel/prom_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c
index 32b5b05082ea..55b4080a821e 100644
--- a/arch/powerpc/kernel/prom_init.c
+++ b/arch/powerpc/kernel/prom_init.c
@@ -2080,7 +2080,7 @@ static void __init prom_check_displays(void)
2080 /* Setup a usable color table when the appropriate 2080 /* Setup a usable color table when the appropriate
2081 * method is available. Should update this to set-colors */ 2081 * method is available. Should update this to set-colors */
2082 clut = RELOC(default_colors); 2082 clut = RELOC(default_colors);
2083 for (i = 0; i < 32; i++, clut += 3) 2083 for (i = 0; i < 16; i++, clut += 3)
2084 if (prom_set_color(ih, i, clut[0], clut[1], 2084 if (prom_set_color(ih, i, clut[0], clut[1],
2085 clut[2]) != 0) 2085 clut[2]) != 0)
2086 break; 2086 break;