aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-pxa/mfp-pxa3xx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-pxa/mfp-pxa3xx.c b/arch/arm/mach-pxa/mfp-pxa3xx.c
index b84c3ba7a8d6..3a5b0fcbaf1f 100644
--- a/arch/arm/mach-pxa/mfp-pxa3xx.c
+++ b/arch/arm/mach-pxa/mfp-pxa3xx.c
@@ -42,7 +42,7 @@ struct pxa3xx_mfp_pin {
42static struct pxa3xx_mfp_pin mfp_table[MFP_PIN_MAX]; 42static struct pxa3xx_mfp_pin mfp_table[MFP_PIN_MAX];
43 43
44/* mapping of MFP_LPM_* definitions to MFPR_LPM_* register bits */ 44/* mapping of MFP_LPM_* definitions to MFPR_LPM_* register bits */
45const static unsigned long mfpr_lpm[] = { 45static const unsigned long mfpr_lpm[] = {
46 MFPR_LPM_INPUT, 46 MFPR_LPM_INPUT,
47 MFPR_LPM_DRIVE_LOW, 47 MFPR_LPM_DRIVE_LOW,
48 MFPR_LPM_DRIVE_HIGH, 48 MFPR_LPM_DRIVE_HIGH,
@@ -52,7 +52,7 @@ const static unsigned long mfpr_lpm[] = {
52}; 52};
53 53
54/* mapping of MFP_PULL_* definitions to MFPR_PULL_* register bits */ 54/* mapping of MFP_PULL_* definitions to MFPR_PULL_* register bits */
55const static unsigned long mfpr_pull[] = { 55static const unsigned long mfpr_pull[] = {
56 MFPR_PULL_NONE, 56 MFPR_PULL_NONE,
57 MFPR_PULL_LOW, 57 MFPR_PULL_LOW,
58 MFPR_PULL_HIGH, 58 MFPR_PULL_HIGH,
@@ -60,7 +60,7 @@ const static unsigned long mfpr_pull[] = {
60}; 60};
61 61
62/* mapping of MFP_LPM_EDGE_* definitions to MFPR_EDGE_* register bits */ 62/* mapping of MFP_LPM_EDGE_* definitions to MFPR_EDGE_* register bits */
63const static unsigned long mfpr_edge[] = { 63static const unsigned long mfpr_edge[] = {
64 MFPR_EDGE_NONE, 64 MFPR_EDGE_NONE,
65 MFPR_EDGE_RISE, 65 MFPR_EDGE_RISE,
66 MFPR_EDGE_FALL, 66 MFPR_EDGE_FALL,