[PATCH] powerpc: fix kernel version display on pseries boxes
authorAnton Blanchard <anton@samba.org>
Wed, 10 May 2006 03:05:54 +0000 (13:05 +1000)
committerPaul Mackerras <paulus@samba.org>
Tue, 16 May 2006 11:30:57 +0000 (21:30 +1000)
We are displaying the wrong thing on the operator panel (2x40
character LCD).  This got broken in commit cebb21b5, when UTS_RELEASE
got changed to system_utsname.version.

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/platforms/pseries/setup.c

index 5eb55ef..5f79f01 100644 (file)
@@ -255,7 +255,7 @@ static int __init pSeries_init_panel(void)
 {
        /* Manually leave the kernel version on the panel. */
        ppc_md.progress("Linux ppc64\n", 0);
-       ppc_md.progress(system_utsname.version, 0);
+       ppc_md.progress(system_utsname.release, 0);
 
        return 0;
 }