1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <net/iw_handler.h>
9 #ifdef CONFIG_WEXT_CORE
10 int wext_handle_ioctl(struct net
*net
, unsigned int cmd
,
12 int compat_wext_handle_ioctl(struct net
*net
, unsigned int cmd
,
15 struct iw_statistics
*get_wireless_stats(struct net_device
*dev
);
16 int call_commit_handler(struct net_device
*dev
);
18 static inline int wext_handle_ioctl(struct net
*net
, unsigned int cmd
,
23 static inline int compat_wext_handle_ioctl(struct net
*net
, unsigned int cmd
,
30 #ifdef CONFIG_WEXT_PROC
31 int wext_proc_init(struct net
*net
);
32 void wext_proc_exit(struct net
*net
);
34 static inline int wext_proc_init(struct net
*net
)
38 static inline void wext_proc_exit(struct net
*net
)
44 #ifdef CONFIG_WEXT_PRIV
45 int ioctl_private_call(struct net_device
*dev
, struct iwreq
*iwr
,
46 unsigned int cmd
, struct iw_request_info
*info
,
48 int compat_private_call(struct net_device
*dev
, struct iwreq
*iwr
,
49 unsigned int cmd
, struct iw_request_info
*info
,
51 int iw_handler_get_private(struct net_device
* dev
,
52 struct iw_request_info
* info
,
53 union iwreq_data
* wrqu
,
56 #define ioctl_private_call NULL
57 #define compat_private_call NULL
61 #endif /* __NET_WEXT_H */