diff options
author | Joseph Lo <josephl@nvidia.com> | 2012-08-16 17:31:50 +0800 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2012-09-13 11:41:06 -0600 |
commit | c2be5bfcc986e688c0c9b427b9fb33be178437d8 (patch) | |
tree | 66d900ceb5b57fe3e8008e0d0480518b3046eb9c /arch/arm/mach-tegra/headsmp.S | |
parent | bb6032776d81d01cf6fecac7ccc27dd5abbffd7a (diff) |
ARM: tegra: clean up the common assembly macros into sleep.h
There are some common macros for Tegra low-level assembly code. Clean
up them into one header file and move the definitions that will be
re-used into it as well.
Signed-off-by: Joseph Lo <josephl@nvidia.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/headsmp.S')
-rw-r--r-- | arch/arm/mach-tegra/headsmp.S | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/arm/mach-tegra/headsmp.S b/arch/arm/mach-tegra/headsmp.S index fef9c2c5137..6addc78cb6b 100644 --- a/arch/arm/mach-tegra/headsmp.S +++ b/arch/arm/mach-tegra/headsmp.S @@ -7,17 +7,13 @@ #include "flowctrl.h" #include "reset.h" +#include "sleep.h" #define APB_MISC_GP_HIDREV 0x804 #define PMC_SCRATCH41 0x140 #define RESET_DATA(x) ((TEGRA_RESET_##x)*4) - .macro mov32, reg, val - movw \reg, #:lower16:\val - movt \reg, #:upper16:\val - .endm - .section ".text.head", "ax" __CPUINIT |