summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ti/wlcore/wlcore.h
diff options
context:
space:
mode:
authorArik Nemtsov <arik@wizery.com>2011-12-07 21:09:03 +0200
committerLuciano Coelho <coelho@ti.com>2012-04-12 08:43:58 +0300
commit96e0c6837bb2db2f00d00f5295d0e9467e24a99f (patch)
tree5d88f167a14a1d33740963845a42efe3d32d3e8c /drivers/net/wireless/ti/wlcore/wlcore.h
parent441101f67818cf5aaba7081fb05c8604a55c0949 (diff)
downloadlinux-96e0c6837bb2db2f00d00f5295d0e9467e24a99f.tar.bz2
wlcore/wl12xx: create per-chip-family private storage
This storage is allocated in wlcore_alloc_hw and freed in free_hw. The size of the storage is determined by the low-level driver. Signed-off-by: Arik Nemtsov <arik@wizery.com> Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'drivers/net/wireless/ti/wlcore/wlcore.h')
-rw-r--r--drivers/net/wireless/ti/wlcore/wlcore.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/wireless/ti/wlcore/wlcore.h b/drivers/net/wireless/ti/wlcore/wlcore.h
index 66c33b8c0119..01ac0913a44f 100644
--- a/drivers/net/wireless/ti/wlcore/wlcore.h
+++ b/drivers/net/wireless/ti/wlcore/wlcore.h
@@ -300,11 +300,14 @@ struct wl1271 {
const char *plt_fw_name;
const char *sr_fw_name;
const char *mr_fw_name;
+
+ /* per-chip-family private structure */
+ void *priv;
};
int __devinit wlcore_probe(struct wl1271 *wl, struct platform_device *pdev);
int __devexit wlcore_remove(struct platform_device *pdev);
-struct ieee80211_hw *wlcore_alloc_hw(void);
+struct ieee80211_hw *wlcore_alloc_hw(size_t priv_size);
int wlcore_free_hw(struct wl1271 *wl);
/* Firmware image load chunk size */