summaryrefslogtreecommitdiffstats
path: root/post/post.c
diff options
context:
space:
mode:
authorwdenk <wdenk>2002-11-21 23:11:29 +0000
committerwdenk <wdenk>2002-11-21 23:11:29 +0000
commitea909b7604306a400ee3abf57e2fa7b2dde5dde1 (patch)
treef23f5653250d0440fe81b098037814a401fc9cc9 /post/post.c
parentb2184c314de0af9788ce505b413030d2114cfa4a (diff)
downloadtalos-obmc-uboot-ea909b7604306a400ee3abf57e2fa7b2dde5dde1.tar.gz
talos-obmc-uboot-ea909b7604306a400ee3abf57e2fa7b2dde5dde1.zip
* Added support for both PCMCIA slots (at the same time!) on MPC8xx
* Patch by Rod Boyce, 21 Nov 2002: fix PCMCIA on MBX8xx board * Patch by Pierre Aubert , 21 Nov 2002 Add CFG_CPM_POST_WORD_ADDR to make the offset of the bootmode word in DPRAM configurable
Diffstat (limited to 'post/post.c')
-rw-r--r--post/post.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/post/post.c b/post/post.c
index d1b8d1ae28..f87636cb44 100644
--- a/post/post.c
+++ b/post/post.c
@@ -193,18 +193,21 @@ int post_run (char *name, int flags)
(flags & test_flags[last] & POST_ALWAYS) &&
(flags & test_flags[last] & POST_MEM)) {
- post_run_single (post_list + last, test_flags[last],
- flags | POST_REBOOT, last);
+ post_run_single (post_list + last,
+ test_flags[last],
+ flags | POST_REBOOT, last);
for (i = last + 1; i < post_list_size; i++) {
- post_run_single (post_list + i, test_flags[i],
- flags, i);
+ post_run_single (post_list + i,
+ test_flags[i],
+ flags, i);
}
}
} else {
for (i = 0; i < post_list_size; i++) {
- post_run_single (post_list + i, test_flags[i], flags,
- i);
+ post_run_single (post_list + i,
+ test_flags[i],
+ flags, i);
}
}
OpenPOWER on IntegriCloud