Skip to content

Commit

Permalink
mx31ads: Make unexported data static
Browse files Browse the repository at this point in the history
Keeps sparse happy.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
  • Loading branch information
Mark Brown authored and Sascha Hauer committed Mar 13, 2009
1 parent 4d5f9cd commit 8b785b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/arm/mach-mx3/mx31ads.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,13 +221,13 @@ static struct map_desc mx31ads_io_desc[] __initdata = {
/*!
* Set up static virtual mappings.
*/
void __init mx31ads_map_io(void)
static void __init mx31ads_map_io(void)
{
mxc_map_io();
iotable_init(mx31ads_io_desc, ARRAY_SIZE(mx31ads_io_desc));
}

void __init mx31ads_init_irq(void)
static void __init mx31ads_init_irq(void)
{
mxc_init_irq();
mx31ads_init_expio();
Expand All @@ -247,7 +247,7 @@ static void __init mx31ads_timer_init(void)
mx31_clocks_init(26000000);
}

struct sys_timer mx31ads_timer = {
static struct sys_timer mx31ads_timer = {
.init = mx31ads_timer_init,
};

Expand Down

0 comments on commit 8b785b9

Please sign in to comment.