diff options
| author | Jeff Garzik <jgarzik@pobox.com> | 2005-09-24 04:05:52 -0400 |
|---|---|---|
| committer | Jeff Garzik <jgarzik@pobox.com> | 2005-09-24 04:05:52 -0400 |
| commit | e2e965072564e7aad8df963107677a6d22c41767 (patch) | |
| tree | 92667c7ec98f96308f4eefd4ec3c1bdfbb5acd93 /drivers/net/wireless/airo.c | |
| parent | 596ff2e7c8db39c700e277f0bc267244be253f5b (diff) | |
Remove WIRELESS_EXT ifdefs from several wireless drivers.
Diffstat (limited to 'drivers/net/wireless/airo.c')
| -rw-r--r-- | drivers/net/wireless/airo.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/drivers/net/wireless/airo.c b/drivers/net/wireless/airo.c index 06998c2240d9..a6194955df2c 100644 --- a/drivers/net/wireless/airo.c +++ b/drivers/net/wireless/airo.c | |||
| @@ -1046,7 +1046,6 @@ static WifiCtlHdr wifictlhdr8023 = { | |||
| 1046 | } | 1046 | } |
| 1047 | }; | 1047 | }; |
| 1048 | 1048 | ||
| 1049 | #ifdef WIRELESS_EXT | ||
| 1050 | // Frequency list (map channels to frequencies) | 1049 | // Frequency list (map channels to frequencies) |
| 1051 | static const long frequency_list[] = { 2412, 2417, 2422, 2427, 2432, 2437, 2442, | 1050 | static const long frequency_list[] = { 2412, 2417, 2422, 2427, 2432, 2437, 2442, |
| 1052 | 2447, 2452, 2457, 2462, 2467, 2472, 2484 }; | 1051 | 2447, 2452, 2457, 2462, 2467, 2472, 2484 }; |
| @@ -1067,7 +1066,6 @@ typedef struct wep_key_t { | |||
| 1067 | 1066 | ||
| 1068 | /* List of Wireless Handlers (new API) */ | 1067 | /* List of Wireless Handlers (new API) */ |
| 1069 | static const struct iw_handler_def airo_handler_def; | 1068 | static const struct iw_handler_def airo_handler_def; |
| 1070 | #endif /* WIRELESS_EXT */ | ||
| 1071 | 1069 | ||
| 1072 | static const char version[] = "airo.c 0.6 (Ben Reed & Javier Achirica)"; | 1070 | static const char version[] = "airo.c 0.6 (Ben Reed & Javier Achirica)"; |
| 1073 | 1071 | ||
| @@ -1110,10 +1108,8 @@ static irqreturn_t airo_interrupt( int irq, void* dev_id, struct pt_regs | |||
| 1110 | static int airo_thread(void *data); | 1108 | static int airo_thread(void *data); |
| 1111 | static void timer_func( struct net_device *dev ); | 1109 | static void timer_func( struct net_device *dev ); |
| 1112 | static int airo_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); | 1110 | static int airo_ioctl(struct net_device *dev, struct ifreq *rq, int cmd); |
| 1113 | #ifdef WIRELESS_EXT | ||
| 1114 | static struct iw_statistics *airo_get_wireless_stats (struct net_device *dev); | 1111 | static struct iw_statistics *airo_get_wireless_stats (struct net_device *dev); |
| 1115 | static void airo_read_wireless_stats (struct airo_info *local); | 1112 | static void airo_read_wireless_stats (struct airo_info *local); |
| 1116 | #endif /* WIRELESS_EXT */ | ||
| 1117 | #ifdef CISCO_EXT | 1113 | #ifdef CISCO_EXT |
| 1118 | static int readrids(struct net_device *dev, aironet_ioctl *comp); | 1114 | static int readrids(struct net_device *dev, aironet_ioctl *comp); |
| 1119 | static int writerids(struct net_device *dev, aironet_ioctl *comp); | 1115 | static int writerids(struct net_device *dev, aironet_ioctl *comp); |
| @@ -1187,12 +1183,10 @@ struct airo_info { | |||
| 1187 | int fid; | 1183 | int fid; |
| 1188 | } xmit, xmit11; | 1184 | } xmit, xmit11; |
| 1189 | struct net_device *wifidev; | 1185 | struct net_device *wifidev; |
| 1190 | #ifdef WIRELESS_EXT | ||
| 1191 | struct iw_statistics wstats; // wireless stats | 1186 | struct iw_statistics wstats; // wireless stats |
| 1192 | unsigned long scan_timestamp; /* Time started to scan */ | 1187 | unsigned long scan_timestamp; /* Time started to scan */ |
| 1193 | struct iw_spy_data spy_data; | 1188 | struct iw_spy_data spy_data; |
| 1194 | struct iw_public_data wireless_data; | 1189 | struct iw_public_data wireless_data; |
| 1195 | #endif /* WIRELESS_EXT */ | ||
| 1196 | #ifdef MICSUPPORT | 1190 | #ifdef MICSUPPORT |
| 1197 | /* MIC stuff */ | 1191 | /* MIC stuff */ |
| 1198 | struct crypto_tfm *tfm; | 1192 | struct crypto_tfm *tfm; |
| @@ -2647,9 +2641,7 @@ static void wifi_setup(struct net_device *dev) | |||
| 2647 | dev->get_stats = &airo_get_stats; | 2641 | dev->get_stats = &airo_get_stats; |
| 2648 | dev->set_mac_address = &airo_set_mac_address; | 2642 | dev->set_mac_address = &airo_set_mac_address; |
| 2649 | dev->do_ioctl = &airo_ioctl; | 2643 | dev->do_ioctl = &airo_ioctl; |
| 2650 | #ifdef WIRELESS_EXT | ||
| 2651 | dev->wireless_handlers = &airo_handler_def; | 2644 | dev->wireless_handlers = &airo_handler_def; |
| 2652 | #endif /* WIRELESS_EXT */ | ||
| 2653 | dev->change_mtu = &airo_change_mtu; | 2645 | dev->change_mtu = &airo_change_mtu; |
| 2654 | dev->open = &airo_open; | 2646 | dev->open = &airo_open; |
| 2655 | dev->stop = &airo_close; | 2647 | dev->stop = &airo_close; |
| @@ -2675,9 +2667,7 @@ static struct net_device *init_wifidev(struct airo_info *ai, | |||
| 2675 | dev->priv = ethdev->priv; | 2667 | dev->priv = ethdev->priv; |
| 2676 | dev->irq = ethdev->irq; | 2668 | dev->irq = ethdev->irq; |
| 2677 | dev->base_addr = ethdev->base_addr; | 2669 | dev->base_addr = ethdev->base_addr; |
| 2678 | #ifdef WIRELESS_EXT | ||
| 2679 | dev->wireless_data = ethdev->wireless_data; | 2670 | dev->wireless_data = ethdev->wireless_data; |
| 2680 | #endif /* WIRELESS_EXT */ | ||
| 2681 | memcpy(dev->dev_addr, ethdev->dev_addr, dev->addr_len); | 2671 | memcpy(dev->dev_addr, ethdev->dev_addr, dev->addr_len); |
| 2682 | err = register_netdev(dev); | 2672 | err = register_netdev(dev); |
| 2683 | if (err<0) { | 2673 | if (err<0) { |
| @@ -2755,11 +2745,9 @@ static struct net_device *_init_airo_card( unsigned short irq, int port, | |||
| 2755 | dev->set_multicast_list = &airo_set_multicast_list; | 2745 | dev->set_multicast_list = &airo_set_multicast_list; |
| 2756 | dev->set_mac_address = &airo_set_mac_address; | 2746 | dev->set_mac_address = &airo_set_mac_address; |
| 2757 | dev->do_ioctl = &airo_ioctl; | 2747 | dev->do_ioctl = &airo_ioctl; |
| 2758 | #ifdef WIRELESS_EXT | ||
| 2759 | dev->wireless_handlers = &airo_handler_def; | 2748 | dev->wireless_handlers = &airo_handler_def; |
| 2760 | ai->wireless_data.spy_data = &ai->spy_data; | 2749 | ai->wireless_data.spy_data = &ai->spy_data; |
| 2761 | dev->wireless_data = &ai->wireless_data; | 2750 | dev->wireless_data = &ai->wireless_data; |
| 2762 | #endif /* WIRELESS_EXT */ | ||
| 2763 | dev->change_mtu = &airo_change_mtu; | 2751 | dev->change_mtu = &airo_change_mtu; |
| 2764 | dev->open = &airo_open; | 2752 | dev->open = &airo_open; |
| 2765 | dev->stop = &airo_close; | 2753 | dev->stop = &airo_close; |
| @@ -5598,7 +5586,6 @@ static void __exit airo_cleanup_module( void ) | |||
| 5598 | remove_proc_entry("aironet", proc_root_driver); | 5586 | remove_proc_entry("aironet", proc_root_driver); |
| 5599 | } | 5587 | } |
| 5600 | 5588 | ||
| 5601 | #ifdef WIRELESS_EXT | ||
| 5602 | /* | 5589 | /* |
| 5603 | * Initial Wireless Extension code for Aironet driver by : | 5590 | * Initial Wireless Extension code for Aironet driver by : |
| 5604 | * Jean Tourrilhes <jt@hpl.hp.com> - HPL - 17 November 00 | 5591 | * Jean Tourrilhes <jt@hpl.hp.com> - HPL - 17 November 00 |
| @@ -7107,8 +7094,6 @@ static const struct iw_handler_def airo_handler_def = | |||
| 7107 | .get_wireless_stats = airo_get_wireless_stats, | 7094 | .get_wireless_stats = airo_get_wireless_stats, |
| 7108 | }; | 7095 | }; |
| 7109 | 7096 | ||
| 7110 | #endif /* WIRELESS_EXT */ | ||
| 7111 | |||
| 7112 | /* | 7097 | /* |
| 7113 | * This defines the configuration part of the Wireless Extensions | 7098 | * This defines the configuration part of the Wireless Extensions |
| 7114 | * Note : irq and spinlock protection will occur in the subroutines | 7099 | * Note : irq and spinlock protection will occur in the subroutines |
| @@ -7187,7 +7172,6 @@ static int airo_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) | |||
| 7187 | return rc; | 7172 | return rc; |
| 7188 | } | 7173 | } |
| 7189 | 7174 | ||
| 7190 | #ifdef WIRELESS_EXT | ||
| 7191 | /* | 7175 | /* |
| 7192 | * Get the Wireless stats out of the driver | 7176 | * Get the Wireless stats out of the driver |
| 7193 | * Note : irq and spinlock protection will occur in the subroutines | 7177 | * Note : irq and spinlock protection will occur in the subroutines |
| @@ -7260,7 +7244,6 @@ static struct iw_statistics *airo_get_wireless_stats(struct net_device *dev) | |||
| 7260 | 7244 | ||
| 7261 | return &local->wstats; | 7245 | return &local->wstats; |
| 7262 | } | 7246 | } |
| 7263 | #endif /* WIRELESS_EXT */ | ||
| 7264 | 7247 | ||
| 7265 | #ifdef CISCO_EXT | 7248 | #ifdef CISCO_EXT |
| 7266 | /* | 7249 | /* |
