]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
OMAP3: Use sdelay from arch/arm/cpu/armv7/syslib.c instead of cloning that.
authorAlexander Holler <holler@ahsoftware.de>
Sat, 18 Dec 2010 12:24:20 +0000 (13:24 +0100)
committerAnatolij Gustschin <agust@denx.de>
Sun, 27 Nov 2011 18:44:36 +0000 (19:44 +0100)
There is no need to have such a function twice.

Signed-off-by: Alexander Holler <holler@ahsoftware.de>
Acked-by: Dirk Behme <dirk.behme@googlemail.com>
Signed-off-by: Anatolij Gustschin <agust@denx.de>
arch/arm/cpu/armv7/omap3/board.c

index a9fdb4f8ed918f22516f0ab3e064052d6f011c08..cdf452dfbc7d346dd4e89e0809e5e772caab953f 100644 (file)
@@ -92,16 +92,6 @@ u32 omap_boot_device(void)
 #endif /* CONFIG_SPL_BUILD */
 
 
-/******************************************************************************
- * Routine: delay
- * Description: spinning delay to use before udelay works
- *****************************************************************************/
-static inline void delay(unsigned long loops)
-{
-       __asm__ volatile ("1:\n" "subs %0, %1, #1\n"
-                         "bne 1b":"=r" (loops):"0"(loops));
-}
-
 /******************************************************************************
  * Routine: secure_unlock
  * Description: Setup security registers for access
@@ -227,7 +217,7 @@ void s_init(void)
 #endif
 
        set_muxconf_regs();
-       delay(100);
+       sdelay(100);
 
        prcm_init();