diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-01-15 11:14:29 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2009-03-13 05:33:57 -0400 |
commit | 8b785b9dfb309be8d44d655df1f370b15dda7687 (patch) | |
tree | 41885691b41f753954920a9c64af4b36ba023592 /arch/arm/mach-mx3/mx31ads.c | |
parent | 4d5f9cdacb74d35b4e435cb66443da203d8be6f0 (diff) |
mx31ads: Make unexported data static
Keeps sparse happy.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx3/mx31ads.c')
-rw-r--r-- | arch/arm/mach-mx3/mx31ads.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-mx3/mx31ads.c b/arch/arm/mach-mx3/mx31ads.c index f913999eedf0..6804fbe266ef 100644 --- a/arch/arm/mach-mx3/mx31ads.c +++ b/arch/arm/mach-mx3/mx31ads.c | |||
@@ -221,13 +221,13 @@ static struct map_desc mx31ads_io_desc[] __initdata = { | |||
221 | /*! | 221 | /*! |
222 | * Set up static virtual mappings. | 222 | * Set up static virtual mappings. |
223 | */ | 223 | */ |
224 | void __init mx31ads_map_io(void) | 224 | static void __init mx31ads_map_io(void) |
225 | { | 225 | { |
226 | mxc_map_io(); | 226 | mxc_map_io(); |
227 | iotable_init(mx31ads_io_desc, ARRAY_SIZE(mx31ads_io_desc)); | 227 | iotable_init(mx31ads_io_desc, ARRAY_SIZE(mx31ads_io_desc)); |
228 | } | 228 | } |
229 | 229 | ||
230 | void __init mx31ads_init_irq(void) | 230 | static void __init mx31ads_init_irq(void) |
231 | { | 231 | { |
232 | mxc_init_irq(); | 232 | mxc_init_irq(); |
233 | mx31ads_init_expio(); | 233 | mx31ads_init_expio(); |
@@ -247,7 +247,7 @@ static void __init mx31ads_timer_init(void) | |||
247 | mx31_clocks_init(26000000); | 247 | mx31_clocks_init(26000000); |
248 | } | 248 | } |
249 | 249 | ||
250 | struct sys_timer mx31ads_timer = { | 250 | static struct sys_timer mx31ads_timer = { |
251 | .init = mx31ads_timer_init, | 251 | .init = mx31ads_timer_init, |
252 | }; | 252 | }; |
253 | 253 | ||