]> Git Repo - J-u-boot.git/blobdiff - cmd/booti.c
net: wget: integrate struct wget_info into legacy wget code
[J-u-boot.git] / cmd / booti.c
index 62b19e83436659da68e34cc05ece5cf8d2e3dbbb..43e79e87201b992acf915c96f326070f06942919 100644 (file)
@@ -78,7 +78,7 @@ static int booti_start(struct bootm_info *bmi)
 
        /* Handle BOOTM_STATE_LOADOS */
        if (relocated_addr != ld) {
-               printf("Moving Image from 0x%lx to 0x%lx, end=%lx\n", ld,
+               printf("Moving Image from 0x%lx to 0x%lx, end=0x%lx\n", ld,
                       relocated_addr, relocated_addr + image_size);
                memmove((void *)relocated_addr, (void *)ld, image_size);
        }
@@ -87,7 +87,7 @@ static int booti_start(struct bootm_info *bmi)
        images->os.start = relocated_addr;
        images->os.end = relocated_addr + image_size;
 
-       lmb_reserve(&images->lmb, images->ep, le32_to_cpu(image_size));
+       lmb_reserve(images->ep, le32_to_cpu(image_size));
 
        /*
         * Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not
This page took 0.025604 seconds and 4 git commands to generate.