]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
arm: omap3: Define save_boot_params in lowlevel_init.S for SPL only
authorPali Rohár <pali.rohar@gmail.com>
Tue, 24 Jan 2012 04:27:58 +0000 (04:27 +0000)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Sun, 12 Feb 2012 09:11:22 +0000 (10:11 +0100)
Wrap the function save_boot_params with CONFIG_SPL_BUILD.  This will
allow non-SPL boards to define their own save_boot_params functions
in U-Boot itself.

Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
arch/arm/cpu/armv7/omap3/lowlevel_init.S

index 2f6930b22d1bed85e40bed1407a07952c2b631b3..c42c5ddcc9ffac518e4bf064e0934cd57ad82448 100644 (file)
 _TEXT_BASE:
        .word   CONFIG_SYS_TEXT_BASE    /* sdram load addr from config.mk */
 
+#ifdef CONFIG_SPL_BUILD
 .global save_boot_params
 save_boot_params:
-#ifdef CONFIG_SPL_BUILD
        ldr     r4, =omap3_boot_device
        ldr     r5, [r0, #0x4]
        and     r5, r5, #0xff
        str     r5, [r4]
-#endif
        bx      lr
+#endif
 
 .global omap3_gp_romcode_call
 omap3_gp_romcode_call: