summaryrefslogtreecommitdiffstats
path: root/lib_avr32
diff options
context:
space:
mode:
authorMarian Balakowicz <m8@semihalf.com>2008-03-12 10:14:38 +0100
committerMarian Balakowicz <m8@semihalf.com>2008-03-12 10:14:38 +0100
commitd985c8498c4e47095820da97aa722381d39172c5 (patch)
tree213d5b778f1a1a66aa296d90513089759120fe56 /lib_avr32
parentc87796483bc7c2900470dc747c367f602577608d (diff)
downloadtalos-obmc-uboot-d985c8498c4e47095820da97aa722381d39172c5.tar.gz
talos-obmc-uboot-d985c8498c4e47095820da97aa722381d39172c5.zip
[new uImage] Remove unnecessary arguments passed to ramdisk routines
boot_get_ramdisk() and image_get_ramdisk() do not need all cmdtp, flag, argc and argv arguments. Simplify routines definition. Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Diffstat (limited to 'lib_avr32')
-rw-r--r--lib_avr32/bootm.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib_avr32/bootm.c b/lib_avr32/bootm.c
index e8e537a2ce..c9a0190023 100644
--- a/lib_avr32/bootm.c
+++ b/lib_avr32/bootm.c
@@ -196,8 +196,10 @@ void do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
}
theKernel = (void *)ep;
- boot_get_ramdisk (cmdtp, flag, argc, argv, images,
- IH_ARCH_AVR32, &initrd_start, &initrd_end);
+ ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_AVR32,
+ &initrd_start, &initrd_end);
+ if (ret)
+ do_reset (cmdtp, flag, argc, argv);
show_boot_progress (15);
OpenPOWER on IntegriCloud