diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-01-04 17:06:21 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-01-09 17:03:03 +1100 |
commit | e75b171768b8b98ec5fd57acb3e87a30c97c9472 (patch) | |
tree | a438152feb641b837546228543fcfc3f9f4678a7 /arch/powerpc | |
parent | e9966ff85013be0ef56d3c76f3b4d5c02488d964 (diff) | |
download | op-kernel-dev-e75b171768b8b98ec5fd57acb3e87a30c97c9472.zip op-kernel-dev-e75b171768b8b98ec5fd57acb3e87a30c97c9472.tar.gz |
[POWERPC] iSeries: fix setup initcall
Clearing the progress indicator should only be done if we are running
on legacy iSeries.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/platforms/iseries/setup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/iseries/setup.c b/arch/powerpc/platforms/iseries/setup.c index bdf2afb..cce7e30 100644 --- a/arch/powerpc/platforms/iseries/setup.c +++ b/arch/powerpc/platforms/iseries/setup.c @@ -527,7 +527,8 @@ static void __init iSeries_fixup_klimit(void) static int __init iSeries_src_init(void) { /* clear the progress line */ - ppc_md.progress(" ", 0xffff); + if (firmware_has_feature(FW_FEATURE_ISERIES)) + ppc_md.progress(" ", 0xffff); return 0; } |