From: Tony Lindgren Date: Fri, 25 Jan 2008 00:37:46 +0000 (-0800) Subject: ARM: OMAP: Fix compile for hsmmc boards X-Git-Tag: v2.6.24-omap1~24 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=d9ba412255d011d4329e8acd624a5337918c76fb;p=linux-2.6-omap-h63xx.git ARM: OMAP: Fix compile for hsmmc boards It can't be static, it gets from board-*.c files as noted by Paul Walmsley. Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/plat-omap/devices.c b/arch/arm/plat-omap/devices.c index 1f703ef7e1e..a16f39ac3e6 100644 --- a/arch/arm/plat-omap/devices.c +++ b/arch/arm/plat-omap/devices.c @@ -343,8 +343,7 @@ void omap_set_mmc_info(int host, const struct omap_mmc_platform_data *info) } #else -static void omap_set_mmc_info(int host, - const struct omap_mmc_platform_data *info) {} +void omap_set_mmc_info(int host, const struct omap_mmc_platform_data *info) {} static inline void omap_init_mmc(void) {} #endif