Browse Source

ARM: mach-integrator: move CM_CTRL to header file for accessing by other functions

Signed-off-by: Bryan Wu <bryan.wu@canonical.com>
Bryan Wu 13 years ago
parent
commit
b7ea032e8a
2 changed files with 2 additions and 2 deletions
  1. 0 2
      arch/arm/mach-integrator/core.c
  2. 2 0
      arch/arm/mach-integrator/include/mach/cm.h

+ 0 - 2
arch/arm/mach-integrator/core.c

@@ -172,8 +172,6 @@ static struct amba_pl010_data integrator_uart_data = {
 	.set_mctrl = integrator_uart_set_mctrl,
 };
 
-#define CM_CTRL	IO_ADDRESS(INTEGRATOR_HDR_CTRL)
-
 static DEFINE_RAW_SPINLOCK(cm_lock);
 
 /**

+ 2 - 0
arch/arm/mach-integrator/include/mach/cm.h

@@ -3,6 +3,8 @@
  */
 void cm_control(u32, u32);
 
+#define CM_CTRL	IO_ADDRESS(INTEGRATOR_HDR_CTRL)
+
 #define CM_CTRL_LED			(1 << 0)
 #define CM_CTRL_nMBDET			(1 << 1)
 #define CM_CTRL_REMAP			(1 << 2)