diff options
author | Colin Cross <ccross@android.com> | 2011-04-07 14:41:33 -0700 |
---|---|---|
committer | Dan Willemsen <dwillemsen@nvidia.com> | 2011-11-30 21:37:03 -0800 |
commit | 71765be38af053a847ef75954751023bad34f3b4 (patch) | |
tree | 34870cea3b1c0fbea119321cbee792ec9e641ad1 /arch/arm/mach-tegra/delay.S | |
parent | dc881206f2ed7d399ece7cdd4fcfac756b2d8197 (diff) |
ARM: tegra: delay: Remove mov32 macro
Change-Id: I83a105b817a49afd13678a897d15b0667806e5ea
Signed-off-by: Colin Cross <ccross@android.com>
Diffstat (limited to 'arch/arm/mach-tegra/delay.S')
-rw-r--r-- | arch/arm/mach-tegra/delay.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/delay.S b/arch/arm/mach-tegra/delay.S index c345c056bb1d..01123bfe6a0c 100644 --- a/arch/arm/mach-tegra/delay.S +++ b/arch/arm/mach-tegra/delay.S @@ -21,13 +21,12 @@ #include <asm/assembler.h> #include <mach/iomap.h> #include <mach/io.h> -#include "power-macros.S" .text ENTRY(__udelay) ENTRY(__const_udelay) - mov32 r3, (IO_PPSB_VIRT + TEGRA_TMRUS_BASE - IO_PPSB_PHYS) + ldr r3, =(IO_PPSB_VIRT + TEGRA_TMRUS_BASE - IO_PPSB_PHYS) ldr r1, [r3] /* r0 - usecs to wait |