]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Remove useless ()
authorLothar Waßmann <LW@KARO-electronics.de>
Mon, 24 Jun 2013 09:01:09 +0000 (11:01 +0200)
committerLothar Waßmann <LW@KARO-electronics.de>
Mon, 24 Jun 2013 09:01:09 +0000 (11:01 +0200)
arch/arm/lib/crt0.S

index 4f60958b1dbf1782863cebd7ffe884733a452b26..a1a513d0ed35277fb83112f28677d7e34d1eaff6 100644 (file)
@@ -101,11 +101,11 @@ _main:
 
 #if defined(CONFIG_NAND_SPL)
        /* deprecated, use instead CONFIG_SPL_BUILD */
-       ldr     sp, =(CONFIG_SYS_INIT_SP_ADDR)
+       ldr     sp, =CONFIG_SYS_INIT_SP_ADDR
 #elif defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_STACK)
-       ldr     sp, =(CONFIG_SPL_STACK)
+       ldr     sp, =CONFIG_SPL_STACK
 #else
-       ldr     sp, =(CONFIG_SYS_INIT_SP_ADDR)
+       ldr     sp, =CONFIG_SYS_INIT_SP_ADDR
 #endif
        bic     sp, sp, #7      /* 8-byte alignment for ABI compliance */
        sub     sp, #GD_SIZE    /* allocate one GD above SP */