Changeset cfeb368 in mainline


Ignore:
Timestamp:
2013-01-23T20:57:08Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c124dce3
Parents:
df334ca
Message:

arm32, boot: Remove redundant parameter.

Location:
boot/arch/arm32
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/arm32/include/asm.h

    rdf334ca rcfeb368  
    4949 *
    5050 */
    51 extern void jump_to_kernel(void *entry, void *bootinfo, void *kernel_end)
     51extern void jump_to_kernel(void *entry, void *bootinfo)
    5252    __attribute__((noreturn));
    5353
  • boot/arch/arm32/src/asm.S

    rdf334ca rcfeb368  
    6464        # r0 is kernel entry point
    6565        # r1 is pointer to the bootinfo structure
    66         # r2 is a kernel text end
    6766
    6867#define CP15_C1_IC              12
  • boot/arch/arm32/src/main.c

    rdf334ca rcfeb368  
    155155        void *kernel_end = (void *) PA2KA(BOOT_OFFSET + components[0].inflated);
    156156        printf("Booting the kernel...\n");
    157         jump_to_kernel((void *) PA2KA(BOOT_OFFSET), &bootinfo, kernel_end);
     157        jump_to_kernel((void *) PA2KA(BOOT_OFFSET), &bootinfo);
    158158}
    159159
Note: See TracChangeset for help on using the changeset viewer.