Blame view

kernel/linux-imx6_3.14.28/net/wireless/wext-compat.h 2.12 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
  #ifndef __WEXT_COMPAT
  #define __WEXT_COMPAT
  
  #include <net/iw_handler.h>
  #include <linux/wireless.h>
  
  int cfg80211_ibss_wext_siwfreq(struct net_device *dev,
  			       struct iw_request_info *info,
  			       struct iw_freq *freq, char *extra);
  int cfg80211_ibss_wext_giwfreq(struct net_device *dev,
  			       struct iw_request_info *info,
  			       struct iw_freq *freq, char *extra);
  int cfg80211_ibss_wext_siwap(struct net_device *dev,
  			     struct iw_request_info *info,
  			     struct sockaddr *ap_addr, char *extra);
  int cfg80211_ibss_wext_giwap(struct net_device *dev,
  			     struct iw_request_info *info,
  			     struct sockaddr *ap_addr, char *extra);
  int cfg80211_ibss_wext_siwessid(struct net_device *dev,
  				struct iw_request_info *info,
  				struct iw_point *data, char *ssid);
  int cfg80211_ibss_wext_giwessid(struct net_device *dev,
  				struct iw_request_info *info,
  				struct iw_point *data, char *ssid);
  
  int cfg80211_mgd_wext_siwfreq(struct net_device *dev,
  			      struct iw_request_info *info,
  			      struct iw_freq *freq, char *extra);
  int cfg80211_mgd_wext_giwfreq(struct net_device *dev,
  			      struct iw_request_info *info,
  			      struct iw_freq *freq, char *extra);
  int cfg80211_mgd_wext_siwap(struct net_device *dev,
  			    struct iw_request_info *info,
  			    struct sockaddr *ap_addr, char *extra);
  int cfg80211_mgd_wext_giwap(struct net_device *dev,
  			    struct iw_request_info *info,
  			    struct sockaddr *ap_addr, char *extra);
  int cfg80211_mgd_wext_siwessid(struct net_device *dev,
  			       struct iw_request_info *info,
  			       struct iw_point *data, char *ssid);
  int cfg80211_mgd_wext_giwessid(struct net_device *dev,
  			       struct iw_request_info *info,
  			       struct iw_point *data, char *ssid);
  
  int cfg80211_wext_siwmlme(struct net_device *dev,
  			  struct iw_request_info *info,
  			  struct iw_point *data, char *extra);
  int cfg80211_wext_siwgenie(struct net_device *dev,
  			   struct iw_request_info *info,
  			   struct iw_point *data, char *extra);
  
  
  int cfg80211_wext_freq(struct wiphy *wiphy, struct iw_freq *freq);
  
  
  extern const struct iw_handler_def cfg80211_wext_handler;
  #endif /* __WEXT_COMPAT */