aboutsummaryrefslogtreecommitdiffstats
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
parentmac80211: fix channel assumption for association done work (diff)
parentomap: zoom2/3: fix build caused by wl1271 support (diff)
downloadlinux-dev-46bf695802bb090d9d0d0fec6bb5b46c24b17d4e.tar.xz
linux-dev-46bf695802bb090d9d0d0fec6bb5b46c24b17d4e.zip
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 95deae3968f4..4f902e1908aa 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