1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
| #ifndef _wl_event_
| #define _wl_event_
| typedef enum WL_EVENT_PRIO {
| PRIO_EVENT_IAPSTA,
| PRIO_EVENT_ESCAN,
| PRIO_EVENT_WEXT
| }wl_event_prio_t;
| s32 wl_ext_event_attach(struct net_device *net);
| void wl_ext_event_dettach(dhd_pub_t *dhdp);
| int wl_ext_event_attach_netdev(struct net_device *net, int ifidx, uint8 bssidx);
| int wl_ext_event_dettach_netdev(struct net_device *net, int ifidx);
| int wl_ext_event_register(struct net_device *dev, dhd_pub_t *dhd,
| uint32 event, void *cb_func, void *data, wl_event_prio_t prio);
| void wl_ext_event_deregister(struct net_device *dev, dhd_pub_t *dhd,
| uint32 event, void *cb_func);
| void wl_ext_event_send(void *params, const wl_event_msg_t * e, void *data);
| #endif
|
|