aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/wext.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/wext.h')
-rw-r--r--include/net/wext.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/net/wext.h b/include/net/wext.h
new file mode 100644
index 000000000000..c02b8decf3af
--- /dev/null
+++ b/include/net/wext.h
@@ -0,0 +1,24 @@
1#ifndef __NET_WEXT_H
2#define __NET_WEXT_H
3
4/*
5 * wireless extensions interface to the core code
6 */
7
8#ifdef CONFIG_WIRELESS_EXT
9extern int wext_proc_init(void);
10extern int wext_handle_ioctl(struct ifreq *ifr, unsigned int cmd,
11 void __user *arg);
12#else
13static inline int wext_proc_init(void)
14{
15 return 0;
16}
17static inline int wext_handle_ioctl(struct ifreq *ifr, unsigned int cmd,
18 void __user *arg)
19{
20 return -EINVAL;
21}
22#endif
23
24#endif /* __NET_WEXT_H */