e86dc1ca46
Holger Schurig's patch (https://patchwork.kernel.org/patch/64286/) is rebased to latest wireless-testing tree. (Includes patches from me originally posted as "libertas: fix build error due to undefined symbol" and "libertas: unmangle capability value". -- JWL) Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Kiran Divekar <dkiran@marvell.com> Tested-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
23 lines
656 B
C
23 lines
656 B
C
#ifndef __LBS_CFG80211_H__
|
|
#define __LBS_CFG80211_H__
|
|
|
|
struct device;
|
|
struct lbs_private;
|
|
|
|
struct wireless_dev *lbs_cfg_alloc(struct device *dev);
|
|
int lbs_cfg_register(struct lbs_private *priv);
|
|
void lbs_cfg_free(struct lbs_private *priv);
|
|
|
|
/* All of those are TODOs: */
|
|
#define lbs_cmd_802_11_rssi(priv, cmdptr) (0)
|
|
#define lbs_ret_802_11_rssi(priv, resp) (0)
|
|
#define lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action) (0)
|
|
#define lbs_ret_802_11_bcn_ctrl(priv, resp) (0)
|
|
|
|
void lbs_send_disconnect_notification(struct lbs_private *priv);
|
|
void lbs_send_mic_failureevent(struct lbs_private *priv, u32 event);
|
|
|
|
void lbs_scan_deinit(struct lbs_private *priv);
|
|
|
|
#endif
|