Staging: add Realtek 8192 PCI wireless driver
[safe/jmp/linux-2.6] / drivers / staging / rtl8192e / ieee80211 / ieee80211_softmac_wx.c
1 /* IEEE 802.11 SoftMAC layer
2  * Copyright (c) 2005 Andrea Merello <andreamrl@tiscali.it>
3  *
4  * Mostly extracted from the rtl8180-sa2400 driver for the
5  * in-kernel generic ieee802.11 stack.
6  *
7  * Some pieces of code might be stolen from ipw2100 driver
8  * copyright of who own it's copyright ;-)
9  *
10  * PS wx handler mostly stolen from hostap, copyright who
11  * own it's copyright ;-)
12  *
13  * released under the GPL
14  */
15
16
17 #include "ieee80211.h"
18 #ifdef ENABLE_DOT11D
19 #include "dot11d.h"
20 #endif
21 /* FIXME: add A freqs */
22
23 const long ieee80211_wlan_frequencies[] = {
24         2412, 2417, 2422, 2427,
25         2432, 2437, 2442, 2447,
26         2452, 2457, 2462, 2467,
27         2472, 2484
28 };
29
30
31 int ieee80211_wx_set_freq(struct ieee80211_device *ieee, struct iw_request_info *a,
32                              union iwreq_data *wrqu, char *b)
33 {
34         int ret;
35         struct iw_freq *fwrq = & wrqu->freq;
36
37         down(&ieee->wx_sem);
38
39         if(ieee->iw_mode == IW_MODE_INFRA){
40                 ret = -EOPNOTSUPP;
41                 goto out;
42         }
43
44         /* if setting by freq convert to channel */
45         if (fwrq->e == 1) {
46                 if ((fwrq->m >= (int) 2.412e8 &&
47                      fwrq->m <= (int) 2.487e8)) {
48                         int f = fwrq->m / 100000;
49                         int c = 0;
50
51                         while ((c < 14) && (f != ieee80211_wlan_frequencies[c]))
52                                 c++;
53
54                         /* hack to fall through */
55                         fwrq->e = 0;
56                         fwrq->m = c + 1;
57                 }
58         }
59
60         if (fwrq->e > 0 || fwrq->m > 14 || fwrq->m < 1 ){
61                 ret = -EOPNOTSUPP;
62                 goto out;
63
64         }else { /* Set the channel */
65
66 #ifdef ENABLE_DOT11D
67                 if (!(GET_DOT11D_INFO(ieee)->channel_map)[fwrq->m]) {
68                         ret = -EINVAL;
69                         goto out;
70                 }
71 #endif
72                 ieee->current_network.channel = fwrq->m;
73                 ieee->set_chan(ieee->dev, ieee->current_network.channel);
74
75                 if(ieee->iw_mode == IW_MODE_ADHOC || ieee->iw_mode == IW_MODE_MASTER)
76                         if(ieee->state == IEEE80211_LINKED){
77
78                         ieee80211_stop_send_beacons(ieee);
79                         ieee80211_start_send_beacons(ieee);
80                         }
81         }
82
83         ret = 0;
84 out:
85         up(&ieee->wx_sem);
86         return ret;
87 }
88
89
90 int ieee80211_wx_get_freq(struct ieee80211_device *ieee,
91                              struct iw_request_info *a,
92                              union iwreq_data *wrqu, char *b)
93 {
94         struct iw_freq *fwrq = & wrqu->freq;
95
96         if (ieee->current_network.channel == 0)
97                 return -1;
98         //NM 0.7.0 will not accept channel any more.
99         fwrq->m = ieee80211_wlan_frequencies[ieee->current_network.channel-1] * 100000;
100         fwrq->e = 1;
101 //      fwrq->m = ieee->current_network.channel;
102 //      fwrq->e = 0;
103
104         return 0;
105 }
106
107 int ieee80211_wx_get_wap(struct ieee80211_device *ieee,
108                             struct iw_request_info *info,
109                             union iwreq_data *wrqu, char *extra)
110 {
111         unsigned long flags;
112         wrqu->ap_addr.sa_family = ARPHRD_ETHER;
113
114         if (ieee->iw_mode == IW_MODE_MONITOR)
115                 return -1;
116
117         /* We want avoid to give to the user inconsistent infos*/
118         spin_lock_irqsave(&ieee->lock, flags);
119
120         if (ieee->state != IEEE80211_LINKED &&
121                 ieee->state != IEEE80211_LINKED_SCANNING &&
122                 ieee->wap_set == 0)
123
124                 memset(wrqu->ap_addr.sa_data, 0, ETH_ALEN);
125         else
126                 memcpy(wrqu->ap_addr.sa_data,
127                        ieee->current_network.bssid, ETH_ALEN);
128
129         spin_unlock_irqrestore(&ieee->lock, flags);
130
131         return 0;
132 }
133
134
135 int ieee80211_wx_set_wap(struct ieee80211_device *ieee,
136                          struct iw_request_info *info,
137                          union iwreq_data *awrq,
138                          char *extra)
139 {
140
141         int ret = 0;
142         u8 zero[] = {0,0,0,0,0,0};
143         unsigned long flags;
144
145         short ifup = ieee->proto_started;//dev->flags & IFF_UP;
146         struct sockaddr *temp = (struct sockaddr *)awrq;
147
148         ieee->sync_scan_hurryup = 1;
149
150         down(&ieee->wx_sem);
151         /* use ifconfig hw ether */
152         if (ieee->iw_mode == IW_MODE_MASTER){
153                 ret = -1;
154                 goto out;
155         }
156
157         if (temp->sa_family != ARPHRD_ETHER){
158                 ret = -EINVAL;
159                 goto out;
160         }
161
162         if (ifup)
163                 ieee80211_stop_protocol(ieee);
164
165         /* just to avoid to give inconsistent infos in the
166          * get wx method. not really needed otherwise
167          */
168         spin_lock_irqsave(&ieee->lock, flags);
169
170         memcpy(ieee->current_network.bssid, temp->sa_data, ETH_ALEN);
171         ieee->wap_set = memcmp(temp->sa_data, zero,ETH_ALEN)!=0;
172
173         spin_unlock_irqrestore(&ieee->lock, flags);
174
175         if (ifup)
176                 ieee80211_start_protocol(ieee);
177 out:
178         up(&ieee->wx_sem);
179         return ret;
180 }
181
182  int ieee80211_wx_get_essid(struct ieee80211_device *ieee, struct iw_request_info *a,union iwreq_data *wrqu,char *b)
183 {
184         int len,ret = 0;
185         unsigned long flags;
186
187         if (ieee->iw_mode == IW_MODE_MONITOR)
188                 return -1;
189
190         /* We want avoid to give to the user inconsistent infos*/
191         spin_lock_irqsave(&ieee->lock, flags);
192
193         if (ieee->current_network.ssid[0] == '\0' ||
194                 ieee->current_network.ssid_len == 0){
195                 ret = -1;
196                 goto out;
197         }
198
199         if (ieee->state != IEEE80211_LINKED &&
200                 ieee->state != IEEE80211_LINKED_SCANNING &&
201                 ieee->ssid_set == 0){
202                 ret = -1;
203                 goto out;
204         }
205         len = ieee->current_network.ssid_len;
206         wrqu->essid.length = len;
207         strncpy(b,ieee->current_network.ssid,len);
208         wrqu->essid.flags = 1;
209
210 out:
211         spin_unlock_irqrestore(&ieee->lock, flags);
212
213         return ret;
214
215 }
216
217 int ieee80211_wx_set_rate(struct ieee80211_device *ieee,
218                              struct iw_request_info *info,
219                              union iwreq_data *wrqu, char *extra)
220 {
221
222         u32 target_rate = wrqu->bitrate.value;
223
224         ieee->rate = target_rate/100000;
225         //FIXME: we might want to limit rate also in management protocols.
226         return 0;
227 }
228
229
230
231 int ieee80211_wx_get_rate(struct ieee80211_device *ieee,
232                              struct iw_request_info *info,
233                              union iwreq_data *wrqu, char *extra)
234 {
235         u32 tmp_rate;
236 #if 0
237         printk("===>mode:%d, halfNmode:%d\n", ieee->mode, ieee->bHalfWirelessN24GMode);
238         if (ieee->mode & (IEEE_A | IEEE_B | IEEE_G))
239                 tmp_rate = ieee->rate;
240         else if (ieee->mode & IEEE_N_5G)
241                 tmp_rate = 580;
242         else if (ieee->mode & IEEE_N_24G)
243         {
244                 if (ieee->GetHalfNmodeSupportByAPsHandler(ieee->dev))
245                         tmp_rate = HTHalfMcsToDataRate(ieee, 15);
246                 else
247                         tmp_rate = HTMcsToDataRate(ieee, 15);
248         }
249 #else
250         tmp_rate = TxCountToDataRate(ieee, ieee->softmac_stats.CurrentShowTxate);
251
252 #endif
253         wrqu->bitrate.value = tmp_rate * 500000;
254
255         return 0;
256 }
257
258
259 int ieee80211_wx_set_rts(struct ieee80211_device *ieee,
260                              struct iw_request_info *info,
261                              union iwreq_data *wrqu, char *extra)
262 {
263         if (wrqu->rts.disabled || !wrqu->rts.fixed)
264                 ieee->rts = DEFAULT_RTS_THRESHOLD;
265         else
266         {
267                 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
268                                 wrqu->rts.value > MAX_RTS_THRESHOLD)
269                         return -EINVAL;
270                 ieee->rts = wrqu->rts.value;
271         }
272         return 0;
273 }
274
275 int ieee80211_wx_get_rts(struct ieee80211_device *ieee,
276                              struct iw_request_info *info,
277                              union iwreq_data *wrqu, char *extra)
278 {
279         wrqu->rts.value = ieee->rts;
280         wrqu->rts.fixed = 0;    /* no auto select */
281         wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
282         return 0;
283 }
284 int ieee80211_wx_set_mode(struct ieee80211_device *ieee, struct iw_request_info *a,
285                              union iwreq_data *wrqu, char *b)
286 {
287
288         ieee->sync_scan_hurryup = 1;
289
290         down(&ieee->wx_sem);
291
292         if (wrqu->mode == ieee->iw_mode)
293                 goto out;
294
295         if (wrqu->mode == IW_MODE_MONITOR){
296
297                 ieee->dev->type = ARPHRD_IEEE80211;
298         }else{
299                 ieee->dev->type = ARPHRD_ETHER;
300         }
301
302         if (!ieee->proto_started){
303                 ieee->iw_mode = wrqu->mode;
304         }else{
305                 ieee80211_stop_protocol(ieee);
306                 ieee->iw_mode = wrqu->mode;
307                 ieee80211_start_protocol(ieee);
308         }
309
310 out:
311         up(&ieee->wx_sem);
312         return 0;
313 }
314
315 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,20)
316 void ieee80211_wx_sync_scan_wq(struct work_struct *work)
317 {
318         struct ieee80211_device *ieee = container_of(work, struct ieee80211_device, wx_sync_scan_wq);
319 #else
320 void ieee80211_wx_sync_scan_wq(struct ieee80211_device *ieee)
321 {
322 #endif
323         short chan;
324         HT_EXTCHNL_OFFSET chan_offset=0;
325         HT_CHANNEL_WIDTH bandwidth=0;
326         int b40M = 0;
327         static int count = 0;
328         chan = ieee->current_network.channel;
329         netif_carrier_off(ieee->dev);
330
331         if (ieee->data_hard_stop)
332                 ieee->data_hard_stop(ieee->dev);
333
334         ieee80211_stop_send_beacons(ieee);
335
336         ieee->state = IEEE80211_LINKED_SCANNING;
337         ieee->link_change(ieee->dev);
338         ieee->InitialGainHandler(ieee->dev,IG_Backup);
339         if (ieee->pHTInfo->bCurrentHTSupport && ieee->pHTInfo->bEnableHT && ieee->pHTInfo->bCurBW40MHz) {
340                 b40M = 1;
341                 chan_offset = ieee->pHTInfo->CurSTAExtChnlOffset;
342                 bandwidth = (HT_CHANNEL_WIDTH)ieee->pHTInfo->bCurBW40MHz;
343                 printk("Scan in 40M, force to 20M first:%d, %d\n", chan_offset, bandwidth);
344                 ieee->SetBWModeHandler(ieee->dev, HT_CHANNEL_WIDTH_20, HT_EXTCHNL_OFFSET_NO_EXT);
345                 }
346         ieee80211_start_scan_syncro(ieee);
347         if (b40M) {
348                 printk("Scan in 20M, back to 40M\n");
349                 if (chan_offset == HT_EXTCHNL_OFFSET_UPPER)
350                         ieee->set_chan(ieee->dev, chan + 2);
351                 else if (chan_offset == HT_EXTCHNL_OFFSET_LOWER)
352                         ieee->set_chan(ieee->dev, chan - 2);
353                 else
354                         ieee->set_chan(ieee->dev, chan);
355                 ieee->SetBWModeHandler(ieee->dev, bandwidth, chan_offset);
356         } else {
357                 ieee->set_chan(ieee->dev, chan);
358         }
359
360         ieee->InitialGainHandler(ieee->dev,IG_Restore);
361         ieee->state = IEEE80211_LINKED;
362         ieee->link_change(ieee->dev);
363         // To prevent the immediately calling watch_dog after scan.
364         if(ieee->LinkDetectInfo.NumRecvBcnInPeriod==0||ieee->LinkDetectInfo.NumRecvDataInPeriod==0 )
365         {
366                 ieee->LinkDetectInfo.NumRecvBcnInPeriod = 1;
367                 ieee->LinkDetectInfo.NumRecvDataInPeriod= 1;
368         }
369         if (ieee->data_hard_resume)
370                 ieee->data_hard_resume(ieee->dev);
371
372         if(ieee->iw_mode == IW_MODE_ADHOC || ieee->iw_mode == IW_MODE_MASTER)
373                 ieee80211_start_send_beacons(ieee);
374
375         netif_carrier_on(ieee->dev);
376         count = 0;
377         up(&ieee->wx_sem);
378
379 }
380
381 int ieee80211_wx_set_scan(struct ieee80211_device *ieee, struct iw_request_info *a,
382                              union iwreq_data *wrqu, char *b)
383 {
384         int ret = 0;
385
386         down(&ieee->wx_sem);
387
388         if (ieee->iw_mode == IW_MODE_MONITOR || !(ieee->proto_started)){
389                 ret = -1;
390                 goto out;
391         }
392
393         if ( ieee->state == IEEE80211_LINKED){
394 #if LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0)
395                 queue_work(ieee->wq, &ieee->wx_sync_scan_wq);
396 #else
397                 schedule_task(&ieee->wx_sync_scan_wq);
398 #endif
399                 /* intentionally forget to up sem */
400                 return 0;
401         }
402
403 out:
404         up(&ieee->wx_sem);
405         return ret;
406 }
407
408 int ieee80211_wx_set_essid(struct ieee80211_device *ieee,
409                               struct iw_request_info *a,
410                               union iwreq_data *wrqu, char *extra)
411 {
412
413         int ret=0,len;
414         short proto_started;
415         unsigned long flags;
416
417         ieee->sync_scan_hurryup = 1;
418         down(&ieee->wx_sem);
419
420         proto_started = ieee->proto_started;
421
422         if (wrqu->essid.length > IW_ESSID_MAX_SIZE){
423                 ret= -E2BIG;
424                 goto out;
425         }
426
427         if (ieee->iw_mode == IW_MODE_MONITOR){
428                 ret= -1;
429                 goto out;
430         }
431
432         if(proto_started)
433                 ieee80211_stop_protocol(ieee);
434
435
436         /* this is just to be sure that the GET wx callback
437          * has consisten infos. not needed otherwise
438          */
439         spin_lock_irqsave(&ieee->lock, flags);
440
441         if (wrqu->essid.flags && wrqu->essid.length) {
442                 //first flush current network.ssid
443                 len = ((wrqu->essid.length-1) < IW_ESSID_MAX_SIZE) ? (wrqu->essid.length-1) : IW_ESSID_MAX_SIZE;
444 #if LINUX_VERSION_CODE <  KERNEL_VERSION(2,6,20)
445                 strncpy(ieee->current_network.ssid, extra, len);
446                 ieee->current_network.ssid_len = len;
447 #if 0
448                 {
449                         int i;
450                         for (i=0; i<len; i++)
451                                 printk("%c ", extra[i]);
452                         printk("\n");
453                 }
454 #endif
455 #else
456                 strncpy(ieee->current_network.ssid, extra, len+1);
457                 ieee->current_network.ssid_len = len+1;
458 #if 0
459                 {
460                         int i;
461                         for (i=0; i<len + 1; i++)
462                                 printk("%c ", extra[i]);
463                         printk("\n");
464                 }
465 #endif
466 #endif
467                 ieee->ssid_set = 1;
468         }
469         else{
470                 ieee->ssid_set = 0;
471                 ieee->current_network.ssid[0] = '\0';
472                 ieee->current_network.ssid_len = 0;
473         }
474         spin_unlock_irqrestore(&ieee->lock, flags);
475
476         if (proto_started)
477                 ieee80211_start_protocol(ieee);
478 out:
479         up(&ieee->wx_sem);
480         return ret;
481 }
482
483  int ieee80211_wx_get_mode(struct ieee80211_device *ieee, struct iw_request_info *a,
484                              union iwreq_data *wrqu, char *b)
485 {
486
487         wrqu->mode = ieee->iw_mode;
488         return 0;
489 }
490
491  int ieee80211_wx_set_rawtx(struct ieee80211_device *ieee,
492                                struct iw_request_info *info,
493                                union iwreq_data *wrqu, char *extra)
494 {
495
496         int *parms = (int *)extra;
497         int enable = (parms[0] > 0);
498         short prev = ieee->raw_tx;
499
500         down(&ieee->wx_sem);
501
502         if(enable)
503                 ieee->raw_tx = 1;
504         else
505                 ieee->raw_tx = 0;
506
507         printk(KERN_INFO"raw TX is %s\n",
508               ieee->raw_tx ? "enabled" : "disabled");
509
510         if(ieee->iw_mode == IW_MODE_MONITOR)
511         {
512                 if(prev == 0 && ieee->raw_tx){
513                         if (ieee->data_hard_resume)
514                                 ieee->data_hard_resume(ieee->dev);
515
516                         netif_carrier_on(ieee->dev);
517                 }
518
519                 if(prev && ieee->raw_tx == 1)
520                         netif_carrier_off(ieee->dev);
521         }
522
523         up(&ieee->wx_sem);
524
525         return 0;
526 }
527
528 int ieee80211_wx_get_name(struct ieee80211_device *ieee,
529                              struct iw_request_info *info,
530                              union iwreq_data *wrqu, char *extra)
531 {
532         strcpy(wrqu->name, "802.11");
533         if(ieee->modulation & IEEE80211_CCK_MODULATION){
534                 strcat(wrqu->name, "b");
535                 if(ieee->modulation & IEEE80211_OFDM_MODULATION)
536                         strcat(wrqu->name, "/g");
537         }else if(ieee->modulation & IEEE80211_OFDM_MODULATION)
538                 strcat(wrqu->name, "g");
539         if (ieee->mode & (IEEE_N_24G | IEEE_N_5G))
540                 strcat(wrqu->name, "/n");
541
542         if((ieee->state == IEEE80211_LINKED) ||
543                 (ieee->state == IEEE80211_LINKED_SCANNING))
544                 strcat(wrqu->name," linked");
545         else if(ieee->state != IEEE80211_NOLINK)
546                 strcat(wrqu->name," link..");
547
548
549         return 0;
550 }
551
552
553 /* this is mostly stolen from hostap */
554 int ieee80211_wx_set_power(struct ieee80211_device *ieee,
555                                  struct iw_request_info *info,
556                                  union iwreq_data *wrqu, char *extra)
557 {
558         int ret = 0;
559 #if 1
560         if(
561                 (!ieee->sta_wake_up) ||
562         //      (!ieee->ps_request_tx_ack) ||
563                 (!ieee->enter_sleep_state) ||
564                 (!ieee->ps_is_queue_empty)){
565
566         //      printk("ERROR. PS mode is tryied to be use but driver missed a callback\n\n");
567
568                 return -1;
569         }
570 #endif
571         down(&ieee->wx_sem);
572
573         if (wrqu->power.disabled){
574                 ieee->ps = IEEE80211_PS_DISABLED;
575                 goto exit;
576         }
577         if (wrqu->power.flags & IW_POWER_TIMEOUT) {
578                 //ieee->ps_period = wrqu->power.value / 1000;
579                 ieee->ps_timeout = wrqu->power.value / 1000;
580         }
581
582         if (wrqu->power.flags & IW_POWER_PERIOD) {
583
584                 //ieee->ps_timeout = wrqu->power.value / 1000;
585                 ieee->ps_period = wrqu->power.value / 1000;
586                 //wrq->value / 1024;
587
588         }
589         switch (wrqu->power.flags & IW_POWER_MODE) {
590         case IW_POWER_UNICAST_R:
591                 ieee->ps = IEEE80211_PS_UNICAST;
592                 break;
593         case IW_POWER_MULTICAST_R:
594                 ieee->ps = IEEE80211_PS_MBCAST;
595                 break;
596         case IW_POWER_ALL_R:
597                 ieee->ps = IEEE80211_PS_UNICAST | IEEE80211_PS_MBCAST;
598                 break;
599
600         case IW_POWER_ON:
601         //      ieee->ps = IEEE80211_PS_DISABLED;
602                 break;
603
604         default:
605                 ret = -EINVAL;
606                 goto exit;
607
608         }
609 exit:
610         up(&ieee->wx_sem);
611         return ret;
612
613 }
614
615 /* this is stolen from hostap */
616 int ieee80211_wx_get_power(struct ieee80211_device *ieee,
617                                  struct iw_request_info *info,
618                                  union iwreq_data *wrqu, char *extra)
619 {
620         int ret =0;
621
622         down(&ieee->wx_sem);
623
624         if(ieee->ps == IEEE80211_PS_DISABLED){
625                 wrqu->power.disabled = 1;
626                 goto exit;
627         }
628
629         wrqu->power.disabled = 0;
630
631         if ((wrqu->power.flags & IW_POWER_TYPE) == IW_POWER_TIMEOUT) {
632                 wrqu->power.flags = IW_POWER_TIMEOUT;
633                 wrqu->power.value = ieee->ps_timeout * 1000;
634         } else {
635 //              ret = -EOPNOTSUPP;
636 //              goto exit;
637                 wrqu->power.flags = IW_POWER_PERIOD;
638                 wrqu->power.value = ieee->ps_period * 1000;
639 //ieee->current_network.dtim_period * ieee->current_network.beacon_interval * 1024;
640         }
641
642        if ((ieee->ps & (IEEE80211_PS_MBCAST | IEEE80211_PS_UNICAST)) == (IEEE80211_PS_MBCAST | IEEE80211_PS_UNICAST))
643                 wrqu->power.flags |= IW_POWER_ALL_R;
644         else if (ieee->ps & IEEE80211_PS_MBCAST)
645                 wrqu->power.flags |= IW_POWER_MULTICAST_R;
646         else
647                 wrqu->power.flags |= IW_POWER_UNICAST_R;
648
649 exit:
650         up(&ieee->wx_sem);
651         return ret;
652
653 }
654 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
655 //EXPORT_SYMBOL(ieee80211_wx_get_essid);
656 //EXPORT_SYMBOL(ieee80211_wx_set_essid);
657 //EXPORT_SYMBOL(ieee80211_wx_set_rate);
658 //EXPORT_SYMBOL(ieee80211_wx_get_rate);
659 //EXPORT_SYMBOL(ieee80211_wx_set_wap);
660 //EXPORT_SYMBOL(ieee80211_wx_get_wap);
661 //EXPORT_SYMBOL(ieee80211_wx_set_mode);
662 //EXPORT_SYMBOL(ieee80211_wx_get_mode);
663 //EXPORT_SYMBOL(ieee80211_wx_set_scan);
664 //EXPORT_SYMBOL(ieee80211_wx_get_freq);
665 //EXPORT_SYMBOL(ieee80211_wx_set_freq);
666 //EXPORT_SYMBOL(ieee80211_wx_set_rawtx);
667 //EXPORT_SYMBOL(ieee80211_wx_get_name);
668 //EXPORT_SYMBOL(ieee80211_wx_set_power);
669 //EXPORT_SYMBOL(ieee80211_wx_get_power);
670 //EXPORT_SYMBOL(ieee80211_wlan_frequencies);
671 //EXPORT_SYMBOL(ieee80211_wx_set_rts);
672 //EXPORT_SYMBOL(ieee80211_wx_get_rts);
673 #else
674 EXPORT_SYMBOL_NOVERS(ieee80211_wx_get_essid);
675 EXPORT_SYMBOL_NOVERS(ieee80211_wx_set_essid);
676 EXPORT_SYMBOL_NOVERS(ieee80211_wx_set_rate);
677 EXPORT_SYMBOL_NOVERS(ieee80211_wx_get_rate);
678 EXPORT_SYMBOL_NOVERS(ieee80211_wx_set_wap);
679 EXPORT_SYMBOL_NOVERS(ieee80211_wx_get_wap);
680 EXPORT_SYMBOL_NOVERS(ieee80211_wx_set_mode);
681 EXPORT_SYMBOL_NOVERS(ieee80211_wx_get_mode);
682 EXPORT_SYMBOL_NOVERS(ieee80211_wx_set_scan);
683 EXPORT_SYMBOL_NOVERS(ieee80211_wx_get_freq);
684 EXPORT_SYMBOL_NOVERS(ieee80211_wx_set_freq);
685 EXPORT_SYMBOL_NOVERS(ieee80211_wx_set_rawtx);
686 EXPORT_SYMBOL_NOVERS(ieee80211_wx_get_name);
687 EXPORT_SYMBOL_NOVERS(ieee80211_wx_set_power);
688 EXPORT_SYMBOL_NOVERS(ieee80211_wx_get_power);
689 EXPORT_SYMBOL_NOVERS(ieee80211_wlan_frequencies);
690 EXPORT_SYMBOL_NOVERS(ieee80211_wx_set_rts);
691 EXPORT_SYMBOL_NOVERS(ieee80211_wx_get_rts);
692 #endif