diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2010-06-01 20:25:03 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-06-02 04:15:40 -0400 |
commit | bb04e197a9dd3d5c4a02b9f7fc7ef74e8ebf3700 (patch) | |
tree | 29f10f5ada47f9d3ab8f2a79440e891301e29406 | |
parent | d3d03e486594dac021caad5befce7d87af4ca00a (diff) |
ARM: mach-shmobile: make sure static declaration on ap4evb
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/arm/mach-shmobile/board-ap4evb.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-shmobile/board-ap4evb.c b/arch/arm/mach-shmobile/board-ap4evb.c index 2963a11c92b4..5d24d4ec93a7 100644 --- a/arch/arm/mach-shmobile/board-ap4evb.c +++ b/arch/arm/mach-shmobile/board-ap4evb.c | |||
@@ -283,7 +283,7 @@ static struct resource sh_mmcif_resources[] = { | |||
283 | }, | 283 | }, |
284 | }; | 284 | }; |
285 | 285 | ||
286 | struct sh_mmcif_plat_data sh_mmcif_plat = { | 286 | static struct sh_mmcif_plat_data sh_mmcif_plat = { |
287 | .sup_pclk = 0, | 287 | .sup_pclk = 0, |
288 | .ocr = MMC_VDD_165_195 | MMC_VDD_32_33 | MMC_VDD_33_34, | 288 | .ocr = MMC_VDD_165_195 | MMC_VDD_32_33 | MMC_VDD_33_34, |
289 | .caps = MMC_CAP_4_BIT_DATA | | 289 | .caps = MMC_CAP_4_BIT_DATA | |
@@ -363,7 +363,7 @@ static struct platform_device sdhi1_device = { | |||
363 | }; | 363 | }; |
364 | 364 | ||
365 | /* USB1 */ | 365 | /* USB1 */ |
366 | void usb1_host_port_power(int port, int power) | 366 | static void usb1_host_port_power(int port, int power) |
367 | { | 367 | { |
368 | if (!power) /* only power-on supported for now */ | 368 | if (!power) /* only power-on supported for now */ |
369 | return; | 369 | return; |
@@ -498,7 +498,7 @@ static struct clk fsiackcr_clk = { | |||
498 | .rate = 0, /* unknown */ | 498 | .rate = 0, /* unknown */ |
499 | }; | 499 | }; |
500 | 500 | ||
501 | struct sh_fsi_platform_info fsi_info = { | 501 | static struct sh_fsi_platform_info fsi_info = { |
502 | .porta_flags = SH_FSI_BRS_INV | | 502 | .porta_flags = SH_FSI_BRS_INV | |
503 | SH_FSI_OUT_SLAVE_MODE | | 503 | SH_FSI_OUT_SLAVE_MODE | |
504 | SH_FSI_IN_SLAVE_MODE | | 504 | SH_FSI_IN_SLAVE_MODE | |
@@ -544,7 +544,7 @@ static struct platform_device *ap4evb_devices[] __initdata = { | |||
544 | 544 | ||
545 | /* TouchScreen (Needs SW3 set to OFF) */ | 545 | /* TouchScreen (Needs SW3 set to OFF) */ |
546 | #define IRQ28 evt2irq(0x3380) /* IRQ28A */ | 546 | #define IRQ28 evt2irq(0x3380) /* IRQ28A */ |
547 | struct tsc2007_platform_data tsc2007_info = { | 547 | static struct tsc2007_platform_data tsc2007_info = { |
548 | .model = 2007, | 548 | .model = 2007, |
549 | .x_plate_ohms = 180, | 549 | .x_plate_ohms = 180, |
550 | }; | 550 | }; |