summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJohn W. Linville <linville@tuxdriver.com>2010-10-05 13:50:27 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-10-05 13:50:27 -0400
commit46bf695802bb090d9d0d0fec6bb5b46c24b17d4e (patch)
tree788afdbec413608f6331ffbac4153f0f6736e6b7 /include
parente7480bbb926c5816e4fbfca70748096bbe0e4978 (diff)
parent4b48e6876b641e1138f37a0fc11fb6a4fc3e24e1 (diff)
Merge branch 'wireless-next' of git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx
Diffstat (limited to 'include')
-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 95deae3968f..4f902e1908a 100644
--- a/include/linux/wl12xx.h
+++ b/include/linux/wl12xx.h
@@ -32,7 +32,20 @@ struct wl12xx_platform_data {
int board_ref_clock;
};
+#ifdef CONFIG_WL12XX_PLATFORM_DATA
+
int wl12xx_set_platform_data(const struct wl12xx_platform_data *data);
+
+#else
+
+static inline
+int wl12xx_set_platform_data(const struct wl12xx_platform_data *data)
+{
+ return -ENOSYS;
+}
+
+#endif
+
const struct wl12xx_platform_data *wl12xx_get_platform_data(void);
#endif