projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e9966ff
)
[POWERPC] iSeries: fix setup initcall
author
Stephen Rothwell
<sfr@canb.auug.org.au>
Thu, 4 Jan 2007 06:06:21 +0000
(17:06 +1100)
committer
Paul Mackerras
<paulus@samba.org>
Tue, 9 Jan 2007 06:03:03 +0000
(17:03 +1100)
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>
arch/powerpc/platforms/iseries/setup.c
patch
|
blob
|
history
diff --git
a/arch/powerpc/platforms/iseries/setup.c
b/arch/powerpc/platforms/iseries/setup.c
index bdf2afbb60c1c23556e0f4c38a6e7a082ce2e580..cce7e309340c99f933390dd5cf81f65a0fb0ab39 100644
(file)
--- 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;
}