summaryrefslogtreecommitdiffstats
path: root/lib_ppc
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_ppc
parentc87796483bc7c2900470dc747c367f602577608d (diff)
downloadblackbird-obmc-uboot-d985c8498c4e47095820da97aa722381d39172c5.tar.gz
blackbird-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_ppc')
-rw-r--r--lib_ppc/bootm.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib_ppc/bootm.c b/lib_ppc/bootm.c
index 797715773d..ac06b2667e 100644
--- a/lib_ppc/bootm.c
+++ b/lib_ppc/bootm.c
@@ -160,9 +160,8 @@ do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))ep;
/* find ramdisk */
- ret = boot_get_ramdisk (cmdtp, flag, argc, argv, images,
- IH_ARCH_PPC, &rd_data_start, &rd_data_end);
-
+ ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
+ &rd_data_start, &rd_data_end);
if (ret)
goto error;
OpenPOWER on IntegriCloud