diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/net/iw_handler.h | 11 | ||||
| -rw-r--r-- | include/net/wext.h | 24 |
2 files changed, 25 insertions, 10 deletions
diff --git a/include/net/iw_handler.h b/include/net/iw_handler.h index 909ca87d13..f23d07ca7c 100644 --- a/include/net/iw_handler.h +++ b/include/net/iw_handler.h | |||
| @@ -431,16 +431,7 @@ struct iw_public_data { | |||
| 431 | * Those may be called only within the kernel. | 431 | * Those may be called only within the kernel. |
| 432 | */ | 432 | */ |
| 433 | 433 | ||
| 434 | /* First : function strictly used inside the kernel */ | 434 | /* functions that may be called by driver modules */ |
| 435 | |||
| 436 | /* Handle /proc/net/wireless, called in net/code/dev.c */ | ||
| 437 | extern int dev_get_wireless_info(char * buffer, char **start, off_t offset, | ||
| 438 | int length); | ||
| 439 | |||
| 440 | /* Handle IOCTLs, called in net/core/dev.c */ | ||
| 441 | extern int wireless_process_ioctl(struct ifreq *ifr, unsigned int cmd); | ||
| 442 | |||
| 443 | /* Second : functions that may be called by driver modules */ | ||
| 444 | 435 | ||
| 445 | /* Send a single event to user space */ | 436 | /* Send a single event to user space */ |
| 446 | extern void wireless_send_event(struct net_device * dev, | 437 | extern void wireless_send_event(struct net_device * dev, |
diff --git a/include/net/wext.h b/include/net/wext.h new file mode 100644 index 0000000000..55741836a6 --- /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 | ||
| 9 | extern int wext_proc_init(void); | ||
| 10 | extern int wext_handle_ioctl(struct ifreq *ifr, unsigned int cmd, | ||
| 11 | void __user *arg); | ||
| 12 | #else | ||
| 13 | static inline int wext_proc_init() | ||
| 14 | { | ||
| 15 | return 0; | ||
| 16 | } | ||
| 17 | static 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 */ | ||
