]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
MIPS: bootm: optimize kernel entry call
authorDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Thu, 9 May 2013 15:10:06 +0000 (17:10 +0200)
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Tue, 13 Aug 2013 09:58:48 +0000 (11:58 +0200)
Fix signature of kernel entry function. Mark the kernel entry
with __noreturn for better code optimisation.

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
arch/mips/lib/bootm.c

index e7aa11a2c99c973526613607407dfd9ddb813351..692f7dc6ca2dce8e0c4637ae2c11277765e08dbe 100644 (file)
@@ -69,20 +69,17 @@ static void boot_prep_linux(bootm_headers_t *images)
 
 static void boot_jump_linux(bootm_headers_t *images)
 {
-       void (*theKernel) (int, char **, char **, int *);
+       typedef void __noreturn (*kernel_entry_t)(int, ulong, ulong, ulong);
+       kernel_entry_t kernel = (kernel_entry_t) images->ep;
 
-       /* find kernel entry point */
-       theKernel = (void (*)(int, char **, char **, int *))images->ep;
-
-       debug("## Transferring control to Linux (at address %08lx) ...\n",
-               (ulong) theKernel);
+       debug("## Transferring control to Linux (at address %p) ...\n", kernel);
 
        bootstage_mark(BOOTSTAGE_ID_RUN_OS);
 
        /* we assume that the kernel is in place */
        printf("\nStarting kernel ...\n\n");
 
-       theKernel(linux_argc, linux_argv, linux_env, 0);
+       kernel(linux_argc, (ulong)linux_argv, (ulong)linux_env, 0);
 }
 
 int do_bootm_linux(int flag, int argc, char * const argv[],