diff options
Diffstat (limited to 'drivers/net/wireless/hostap')
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_80211_rx.c | 1 | ||||
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_80211_tx.c | 1 | ||||
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_ap.c | 2 | ||||
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_info.c | 1 | ||||
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_ioctl.c | 1 | ||||
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_main.c | 6 | ||||
| -rw-r--r-- | drivers/net/wireless/hostap/hostap_proc.c | 1 |
7 files changed, 10 insertions, 3 deletions
diff --git a/drivers/net/wireless/hostap/hostap_80211_rx.c b/drivers/net/wireless/hostap/hostap_80211_rx.c index e0b3e8d406b3..df7050abe717 100644 --- a/drivers/net/wireless/hostap/hostap_80211_rx.c +++ b/drivers/net/wireless/hostap/hostap_80211_rx.c | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | #include <linux/etherdevice.h> | 1 | #include <linux/etherdevice.h> |
| 2 | #include <linux/slab.h> | 2 | #include <linux/slab.h> |
| 3 | #include <linux/export.h> | ||
| 3 | #include <net/lib80211.h> | 4 | #include <net/lib80211.h> |
| 4 | #include <linux/if_arp.h> | 5 | #include <linux/if_arp.h> |
| 5 | 6 | ||
diff --git a/drivers/net/wireless/hostap/hostap_80211_tx.c b/drivers/net/wireless/hostap/hostap_80211_tx.c index c34a3b7f1292..344a981a052e 100644 --- a/drivers/net/wireless/hostap/hostap_80211_tx.c +++ b/drivers/net/wireless/hostap/hostap_80211_tx.c | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | #include <linux/slab.h> | 1 | #include <linux/slab.h> |
| 2 | #include <linux/export.h> | ||
| 2 | 3 | ||
| 3 | #include "hostap_80211.h" | 4 | #include "hostap_80211.h" |
| 4 | #include "hostap_common.h" | 5 | #include "hostap_common.h" |
diff --git a/drivers/net/wireless/hostap/hostap_ap.c b/drivers/net/wireless/hostap/hostap_ap.c index 3d05dc15c6b8..e1f410277242 100644 --- a/drivers/net/wireless/hostap/hostap_ap.c +++ b/drivers/net/wireless/hostap/hostap_ap.c | |||
| @@ -21,6 +21,8 @@ | |||
| 21 | #include <linux/random.h> | 21 | #include <linux/random.h> |
| 22 | #include <linux/if_arp.h> | 22 | #include <linux/if_arp.h> |
| 23 | #include <linux/slab.h> | 23 | #include <linux/slab.h> |
| 24 | #include <linux/export.h> | ||
| 25 | #include <linux/moduleparam.h> | ||
| 24 | 26 | ||
| 25 | #include "hostap_wlan.h" | 27 | #include "hostap_wlan.h" |
| 26 | #include "hostap.h" | 28 | #include "hostap.h" |
diff --git a/drivers/net/wireless/hostap/hostap_info.c b/drivers/net/wireless/hostap/hostap_info.c index d737091cf6ac..47932b28aac1 100644 --- a/drivers/net/wireless/hostap/hostap_info.c +++ b/drivers/net/wireless/hostap/hostap_info.c | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | #include <linux/if_arp.h> | 3 | #include <linux/if_arp.h> |
| 4 | #include <linux/sched.h> | 4 | #include <linux/sched.h> |
| 5 | #include <linux/slab.h> | 5 | #include <linux/slab.h> |
| 6 | #include <linux/export.h> | ||
| 6 | #include "hostap_wlan.h" | 7 | #include "hostap_wlan.h" |
| 7 | #include "hostap.h" | 8 | #include "hostap.h" |
| 8 | #include "hostap_ap.h" | 9 | #include "hostap_ap.h" |
diff --git a/drivers/net/wireless/hostap/hostap_ioctl.c b/drivers/net/wireless/hostap/hostap_ioctl.c index 12de46407c71..045a93645a3d 100644 --- a/drivers/net/wireless/hostap/hostap_ioctl.c +++ b/drivers/net/wireless/hostap/hostap_ioctl.c | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | #include <linux/sched.h> | 5 | #include <linux/sched.h> |
| 6 | #include <linux/ethtool.h> | 6 | #include <linux/ethtool.h> |
| 7 | #include <linux/if_arp.h> | 7 | #include <linux/if_arp.h> |
| 8 | #include <linux/module.h> | ||
| 8 | #include <net/lib80211.h> | 9 | #include <net/lib80211.h> |
| 9 | 10 | ||
| 10 | #include "hostap_wlan.h" | 11 | #include "hostap_wlan.h" |
diff --git a/drivers/net/wireless/hostap/hostap_main.c b/drivers/net/wireless/hostap/hostap_main.c index 89a116fba1de..bfa0d54221e8 100644 --- a/drivers/net/wireless/hostap/hostap_main.c +++ b/drivers/net/wireless/hostap/hostap_main.c | |||
| @@ -816,7 +816,7 @@ static const struct net_device_ops hostap_netdev_ops = { | |||
| 816 | .ndo_stop = prism2_close, | 816 | .ndo_stop = prism2_close, |
| 817 | .ndo_do_ioctl = hostap_ioctl, | 817 | .ndo_do_ioctl = hostap_ioctl, |
| 818 | .ndo_set_mac_address = prism2_set_mac_address, | 818 | .ndo_set_mac_address = prism2_set_mac_address, |
| 819 | .ndo_set_multicast_list = hostap_set_multicast_list, | 819 | .ndo_set_rx_mode = hostap_set_multicast_list, |
| 820 | .ndo_change_mtu = prism2_change_mtu, | 820 | .ndo_change_mtu = prism2_change_mtu, |
| 821 | .ndo_tx_timeout = prism2_tx_timeout, | 821 | .ndo_tx_timeout = prism2_tx_timeout, |
| 822 | .ndo_validate_addr = eth_validate_addr, | 822 | .ndo_validate_addr = eth_validate_addr, |
| @@ -829,7 +829,7 @@ static const struct net_device_ops hostap_mgmt_netdev_ops = { | |||
| 829 | .ndo_stop = prism2_close, | 829 | .ndo_stop = prism2_close, |
| 830 | .ndo_do_ioctl = hostap_ioctl, | 830 | .ndo_do_ioctl = hostap_ioctl, |
| 831 | .ndo_set_mac_address = prism2_set_mac_address, | 831 | .ndo_set_mac_address = prism2_set_mac_address, |
| 832 | .ndo_set_multicast_list = hostap_set_multicast_list, | 832 | .ndo_set_rx_mode = hostap_set_multicast_list, |
| 833 | .ndo_change_mtu = prism2_change_mtu, | 833 | .ndo_change_mtu = prism2_change_mtu, |
| 834 | .ndo_tx_timeout = prism2_tx_timeout, | 834 | .ndo_tx_timeout = prism2_tx_timeout, |
| 835 | .ndo_validate_addr = eth_validate_addr, | 835 | .ndo_validate_addr = eth_validate_addr, |
| @@ -842,7 +842,7 @@ static const struct net_device_ops hostap_master_ops = { | |||
| 842 | .ndo_stop = prism2_close, | 842 | .ndo_stop = prism2_close, |
| 843 | .ndo_do_ioctl = hostap_ioctl, | 843 | .ndo_do_ioctl = hostap_ioctl, |
| 844 | .ndo_set_mac_address = prism2_set_mac_address, | 844 | .ndo_set_mac_address = prism2_set_mac_address, |
| 845 | .ndo_set_multicast_list = hostap_set_multicast_list, | 845 | .ndo_set_rx_mode = hostap_set_multicast_list, |
| 846 | .ndo_change_mtu = prism2_change_mtu, | 846 | .ndo_change_mtu = prism2_change_mtu, |
| 847 | .ndo_tx_timeout = prism2_tx_timeout, | 847 | .ndo_tx_timeout = prism2_tx_timeout, |
| 848 | .ndo_validate_addr = eth_validate_addr, | 848 | .ndo_validate_addr = eth_validate_addr, |
diff --git a/drivers/net/wireless/hostap/hostap_proc.c b/drivers/net/wireless/hostap/hostap_proc.c index 005ff25a405f..75ef8f04aabe 100644 --- a/drivers/net/wireless/hostap/hostap_proc.c +++ b/drivers/net/wireless/hostap/hostap_proc.c | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | #include <linux/types.h> | 3 | #include <linux/types.h> |
| 4 | #include <linux/proc_fs.h> | 4 | #include <linux/proc_fs.h> |
| 5 | #include <linux/export.h> | ||
| 5 | #include <net/lib80211.h> | 6 | #include <net/lib80211.h> |
| 6 | 7 | ||
| 7 | #include "hostap_wlan.h" | 8 | #include "hostap_wlan.h" |
