]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Blackfin: dpmc: relocate hibernate helper macros
authorMike Frysinger <vapier@gentoo.org>
Sun, 26 Jun 2011 18:11:24 +0000 (14:11 -0400)
committerMike Frysinger <vapier@gentoo.org>
Sat, 23 Jul 2011 05:18:28 +0000 (01:18 -0400)
This defines only get used in the hibernate code, so remove them from the
global dpmc header as no one else cares.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
arch/blackfin/include/asm/dpmc.h
arch/blackfin/mach-common/dpmc_modes.S

index edf2a2ad518313883ff26cb8fc49168a1d4db669..d1ba87793e9bbc153e13de2cd85cd30f1e1f6acd 100644 (file)
@@ -134,32 +134,6 @@ struct bfin_dpmc_platform_data {
        unsigned short vr_settling_time; /* in us */
 };
 
-#else
-
-#define PM_PUSH(x) \
-       R0 = [P0 + (x - SRAM_BASE_ADDRESS)];\
-       [--SP] =  R0;\
-
-#define PM_POP(x) \
-       R0 = [SP++];\
-       [P0 + (x - SRAM_BASE_ADDRESS)] = R0;\
-
-#define PM_SYS_PUSH(x) \
-       R0 = [P0 + (x - PLL_CTL)];\
-       [--SP] =  R0;\
-
-#define PM_SYS_POP(x) \
-       R0 = [SP++];\
-       [P0 + (x - PLL_CTL)] = R0;\
-
-#define PM_SYS_PUSH16(x) \
-       R0 = w[P0 + (x - PLL_CTL)];\
-       [--SP] =  R0;\
-
-#define PM_SYS_POP16(x) \
-       R0 = [SP++];\
-       w[P0 + (x - PLL_CTL)] = R0;\
-
 #endif
 
 #endif /*_BLACKFIN_DPMC_H_*/
index bebb01961622158f78bc53b970cac67e1b8dea0d..a36ca3c8da972db815aee1675465b7d95052b978 100644 (file)
@@ -268,6 +268,30 @@ ENDPROC(_test_pll_locked)
 
 .section .text
 
+#define PM_PUSH(x) \
+       R0 = [P0 + (x - SRAM_BASE_ADDRESS)];\
+       [--SP] =  R0;\
+
+#define PM_POP(x) \
+       R0 = [SP++];\
+       [P0 + (x - SRAM_BASE_ADDRESS)] = R0;\
+
+#define PM_SYS_PUSH(x) \
+       R0 = [P0 + (x - PLL_CTL)];\
+       [--SP] =  R0;\
+
+#define PM_SYS_POP(x) \
+       R0 = [SP++];\
+       [P0 + (x - PLL_CTL)] = R0;\
+
+#define PM_SYS_PUSH16(x) \
+       R0 = w[P0 + (x - PLL_CTL)];\
+       [--SP] =  R0;\
+
+#define PM_SYS_POP16(x) \
+       R0 = [SP++];\
+       w[P0 + (x - PLL_CTL)] = R0;\
+
 ENTRY(_do_hibernate)
        [--SP] = ( R7:0, P5:0 );
        [--SP] =  RETS;