aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/wl12xx.h
diff options
context:
space:
mode:
authorOhad Ben-Cohen <ohad@wizery.com>2010-09-28 14:20:28 -0400
committerLuciano Coelho <luciano.coelho@nokia.com>2010-09-29 23:01:56 -0400
commit65836112fc24bdf009554481b36b6ba0a690b855 (patch)
treea165b5eb510a16c17c466fb79ae4a6c98998e3be /include/linux/wl12xx.h
parent381bd10aff491216383291879b29461efb575119 (diff)
wl12xx: fix non-wl12xx build scenarios
Support building wl1271-equipped boards without building the wl1271 driver itself, e.g.: CONFIG_MACH_OMAP_ZOOM3=y CONFIG_WL12XX is not set Reported-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com> Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
Diffstat (limited to 'include/linux/wl12xx.h')
-rw-r--r--include/linux/wl12xx.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/wl12xx.h b/include/linux/wl12xx.h
index 95deae3968f4..4f902e1908aa 100644
--- a/include/linux/wl12xx.h
+++ b/include/linux/wl12xx.h
@@ -32,7 +32,20 @@ struct wl12xx_platform_data {
32 int board_ref_clock; 32 int board_ref_clock;
33}; 33};
34 34
35#ifdef CONFIG_WL12XX_PLATFORM_DATA
36
35int wl12xx_set_platform_data(const struct wl12xx_platform_data *data); 37int wl12xx_set_platform_data(const struct wl12xx_platform_data *data);
38
39#else
40
41static inline
42int wl12xx_set_platform_data(const struct wl12xx_platform_data *data)
43{
44 return -ENOSYS;
45}
46
47#endif
48
36const struct wl12xx_platform_data *wl12xx_get_platform_data(void); 49const struct wl12xx_platform_data *wl12xx_get_platform_data(void);
37 50
38#endif 51#endif