]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - post/post.c
* Added support for both PCMCIA slots (at the same time!) on MPC8xx
[karo-tx-uboot.git] / post / post.c
index d1b8d1ae28bbfd2f240f2377049f9d6e52e65d27..f87636cb44cd86820d47061791cc16dc1a7b64c5 100644 (file)
@@ -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);
                        }
                }