diff options
-rw-r--r-- | arch/arm/mach-davinci/mux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-davinci/mux.c b/arch/arm/mach-davinci/mux.c index a8eb909a2b6c..6a2ff0a654a5 100644 --- a/arch/arm/mach-davinci/mux.c +++ b/arch/arm/mach-davinci/mux.c | |||
@@ -30,7 +30,7 @@ static void __iomem *pinmux_base; | |||
30 | /* | 30 | /* |
31 | * Sets the DAVINCI MUX register based on the table | 31 | * Sets the DAVINCI MUX register based on the table |
32 | */ | 32 | */ |
33 | int __init_or_module davinci_cfg_reg(const unsigned long index) | 33 | int davinci_cfg_reg(const unsigned long index) |
34 | { | 34 | { |
35 | static DEFINE_SPINLOCK(mux_spin_lock); | 35 | static DEFINE_SPINLOCK(mux_spin_lock); |
36 | struct davinci_soc_info *soc_info = &davinci_soc_info; | 36 | struct davinci_soc_info *soc_info = &davinci_soc_info; |
@@ -101,7 +101,7 @@ int __init_or_module davinci_cfg_reg(const unsigned long index) | |||
101 | } | 101 | } |
102 | EXPORT_SYMBOL(davinci_cfg_reg); | 102 | EXPORT_SYMBOL(davinci_cfg_reg); |
103 | 103 | ||
104 | int __init_or_module davinci_cfg_reg_list(const short pins[]) | 104 | int davinci_cfg_reg_list(const short pins[]) |
105 | { | 105 | { |
106 | int i, error = -EINVAL; | 106 | int i, error = -EINVAL; |
107 | 107 | ||