summaryrefslogtreecommitdiffstats
path: root/common/startup.c
diff options
context:
space:
mode:
authorSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-09-13 16:06:02 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-09-13 16:06:02 +0200
commit2a9c1de93fd9e74a79cc3fc66331d02797a98329 (patch)
treed8355e5597ef542d97b13d6758545f2528bdf48a /common/startup.c
parent8c42a8f67c8ac14affd18c33e996b09197076f5e (diff)
downloadbarebox-2a9c1de93fd9e74a79cc3fc66331d02797a98329.tar.gz
barebox-2a9c1de93fd9e74a79cc3fc66331d02797a98329.tar.xz
whitespace cleanup
Diffstat (limited to 'common/startup.c')
-rw-r--r--common/startup.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/common/startup.c b/common/startup.c
index 643077343e..a8f20fb103 100644
--- a/common/startup.c
+++ b/common/startup.c
@@ -97,8 +97,8 @@ static void register_default_env(void)
void start_uboot (void)
{
- initcall_t *initcall;
- int result;
+ initcall_t *initcall;
+ int result;
struct stat s;
#ifdef CONFIG_HAS_EARLY_INIT
@@ -114,10 +114,10 @@ void start_uboot (void)
initcall < __u_boot_initcalls_end; initcall++) {
PUTHEX_LL(*initcall);
PUTC_LL('\n');
- result = (*initcall)();
- if (result)
- hang();
- }
+ result = (*initcall)();
+ if (result)
+ hang();
+ }
#ifndef CONFIG_HAS_EARLY_INIT
display_banner();
@@ -142,7 +142,7 @@ void start_uboot (void)
run_command("exec /env/init", 0);
}
- /* main_loop() can return to retry autoboot, if so just run it again. */
+ /* main_loop() can return to retry autoboot, if so just run it again. */
for (;;)
main_loop ();