aironet4500_cs.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:17k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  Aironet 4500 Pcmcia driver
  3.  *
  4.  * Elmer Joandi, Januar 1999
  5.  * Copyright Elmer Joandi, all rights restricted
  6.  *
  7.  *
  8.  * Revision 0.1 ,started  30.12.1998
  9.  *
  10.  *
  11.  */
  12. #define DRV_NAME "aironet4500_cs"
  13. #define DRV_VERSION "0.1"
  14. static const char *awc_version =
  15. DRV_NAME ".c v" DRV_VERSION " 1/1/99 Elmer Joandi, elmer@ylenurme.ee.n";
  16. #include <linux/module.h>
  17. #include <linux/init.h>
  18. #include <linux/kernel.h>
  19. #include <linux/sched.h>
  20. #include <linux/ptrace.h>
  21. #include <linux/slab.h>
  22. #include <linux/string.h>
  23. #include <linux/timer.h>
  24. #include <linux/interrupt.h>
  25. #include <linux/in.h>
  26. #include <linux/ethtool.h>
  27. #include <asm/uaccess.h>
  28. #include <asm/io.h>
  29. #include <asm/system.h>
  30. #include <asm/bitops.h>
  31. #include <linux/netdevice.h>
  32. #include <linux/etherdevice.h>
  33. #include <linux/skbuff.h>
  34. #include <linux/if_arp.h>
  35. #include <linux/ioport.h>
  36. #include <pcmcia/version.h>
  37. #include <pcmcia/cs_types.h>
  38. #include <pcmcia/cs.h>
  39. #include <pcmcia/cistpl.h>
  40. #include <pcmcia/cisreg.h>
  41. #include <pcmcia/ciscode.h>
  42. #if LINUX_VERSION_CODE < 0x20300
  43. #ifdef MODULE
  44. #include <pcmcia/k_compat.h>
  45. #endif
  46. #endif
  47. #include <pcmcia/ds.h>
  48. #include "../aironet4500.h"
  49. static u_int irq_mask = 0x5eF8;
  50. static int  awc_ports[] = {0x140,0x100,0xc0, 0x80 };
  51. #if LINUX_VERSION_CODE > 0x20100
  52. MODULE_PARM(irq_mask, "i");
  53. #endif
  54. #define RUN_AT(x)               (jiffies+(x))
  55. #ifdef PCMCIA_DEBUG
  56. static int pc_debug = PCMCIA_DEBUG;
  57. MODULE_PARM(pc_debug, "i");
  58. #define PC_DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
  59. static char *version =
  60. "aironet4500_cs.c v0.1 1/1/99 Elmer Joandi, elmer@ylenurme.ee.n";
  61. #else
  62. #define PC_DEBUG(n, args...)
  63. #endif
  64. /* Index of functions. */
  65. static dev_info_t dev_info = "aironet4500_cs";
  66. static dev_link_t *awc_attach(void);
  67. static void awc_detach(dev_link_t *);
  68. static void awc_release(u_long arg);
  69. static int awc_event(event_t event, int priority,
  70.    event_callback_args_t *args);
  71. static dev_link_t *dev_list;
  72. static void cs_error(client_handle_t handle, int func, int ret)
  73. {
  74. #if CS_RELEASE_CODE < 0x2911
  75.     CardServices(ReportError, dev_info, (void *)func, (void *)ret);
  76. #else
  77. error_info_t err = { func, ret };
  78. CardServices(ReportError, handle, &err);
  79. #endif
  80. }
  81. #define CFG_CHECK(fn, args...) if (CardServices(fn, args) != 0) goto next_entry
  82. static void flush_stale_links(void)
  83. {
  84.     dev_link_t *link, *next;
  85.     for (link = dev_list; link; link = next) {
  86. next = link->next;
  87. if (link->state & DEV_STALE_LINK)
  88.     awc_detach(link);
  89.     }
  90. }
  91. /*
  92.    We never need to do anything when a awc device is "initialized"
  93.    by the net software, because we only register already-found cards.
  94. */
  95. static int awc_pcmcia_init(struct net_device *dev)
  96. {
  97. return awc_init(dev);
  98. }
  99. static int awc_pcmcia_open(struct net_device *dev)
  100. {
  101. dev_link_t *link;
  102. int status;
  103. for (link = dev_list; link; link = link->next)
  104. if (link->priv == dev) break;
  105. if (!DEV_OK(link))
  106. return -ENODEV;
  107. status = awc_open(dev);
  108. if (!status )
  109. link->open++;
  110. return status;
  111. }
  112. static int awc_pcmcia_close(struct net_device *dev)
  113. {
  114. // int ioaddr = dev->base_addr;
  115. dev_link_t *link;
  116. int ret;
  117. for (link = dev_list; link; link = link->next)
  118. if (link->priv == dev) break;
  119. if (link == NULL)
  120. return -ENODEV;
  121. PC_DEBUG(2, "%s: closing device.n", dev->name);
  122. link->open--;
  123. ret = awc_close(dev);
  124. if (link->state & DEV_STALE_CONFIG) {
  125. link->release.expires = RUN_AT( HZ/20 );
  126. link->state |= DEV_RELEASE_PENDING;
  127. add_timer(&link->release);
  128. }
  129. return ret;
  130. }
  131. static int netdev_ethtool_ioctl (struct net_device *dev, void *useraddr)
  132. {
  133. u32 ethcmd;
  134. /* dev_ioctl() in ../../net/core/dev.c has already checked
  135.    capable(CAP_NET_ADMIN), so don't bother with that here.  */
  136. if (get_user(ethcmd, (u32 *)useraddr))
  137. return -EFAULT;
  138. switch (ethcmd) {
  139. case ETHTOOL_GDRVINFO: {
  140. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  141. strcpy (info.driver, DRV_NAME);
  142. strcpy (info.version, DRV_VERSION);
  143. sprintf(info.bus_info, "PCMCIA 0x%lx", dev->base_addr);
  144. if (copy_to_user (useraddr, &info, sizeof (info)))
  145. return -EFAULT;
  146. return 0;
  147. }
  148. #ifdef PCMCIA_DEBUG
  149. /* get message-level */
  150. case ETHTOOL_GMSGLVL: {
  151. struct ethtool_value edata = {ETHTOOL_GMSGLVL};
  152. edata.data = pc_debug;
  153. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  154. return -EFAULT;
  155. return 0;
  156. }
  157. /* set message-level */
  158. case ETHTOOL_SMSGLVL: {
  159. struct ethtool_value edata;
  160. if (copy_from_user(&edata, useraddr, sizeof(edata)))
  161. return -EFAULT;
  162. pc_debug = edata.data;
  163. return 0;
  164. }
  165. #endif
  166. default:
  167. break;
  168. }
  169. return -EOPNOTSUPP;
  170. }
  171. static int awc_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  172. {
  173. switch (cmd) {
  174. case SIOCETHTOOL:
  175. return netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  176. default:
  177. return -EOPNOTSUPP;
  178. }
  179. return 0;
  180. }
  181. /*
  182. awc_attach() creates an "instance" of the driver, allocating
  183. local data structures for one device.  The device is registered
  184. with Card Services.
  185. */
  186. static dev_link_t *awc_attach(void)
  187. {
  188. client_reg_t client_reg;
  189. dev_link_t *link = NULL;
  190. struct net_device *dev = NULL;
  191. int  ret;
  192. PC_DEBUG(0, "awc_attach()n");
  193. flush_stale_links();
  194. /* Create the PC card device object. */
  195. link = kmalloc(sizeof(struct dev_link_t), GFP_KERNEL);
  196. if (!link)
  197. return NULL;
  198. memset(link, 0, sizeof(struct dev_link_t));
  199. link->dev = kmalloc(sizeof(struct dev_node_t), GFP_KERNEL);
  200. if (!link->dev) {
  201. kfree(link);
  202. return NULL;
  203. }
  204. memset(link->dev, 0, sizeof(struct dev_node_t));
  205. link->release.function = &awc_release;
  206. link->release.data = (u_long)link;
  207. // link->io.NumPorts1 = 32;
  208. link->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
  209. // link->io.IOAddrLines = 5;
  210. link->irq.Attributes = IRQ_HANDLE_PRESENT ; // |IRQ_TYPE_EXCLUSIVE  ;
  211. link->irq.IRQInfo1 = IRQ_INFO2_VALID|IRQ_LEVEL_ID;
  212. link->irq.IRQInfo2 = irq_mask;
  213. link->irq.Handler = &awc_interrupt;
  214. link->conf.Attributes = CONF_ENABLE_IRQ;
  215. link->conf.Vcc = 50;
  216. link->conf.IntType = INT_MEMORY_AND_IO;
  217. link->conf.ConfigIndex = 1;
  218. link->conf.Present = PRESENT_OPTION;
  219. /* Create the network device object. */
  220. dev = kmalloc(sizeof(struct net_device ), GFP_KERNEL);
  221. // dev =  init_etherdev(0, sizeof(struct awc_private) );
  222. if (!dev ) {
  223. printk(KERN_CRIT "out of mem on dev alloc n");
  224. kfree(link->dev);
  225. kfree(link);
  226. return NULL;
  227. };
  228. memset(dev,0,sizeof(struct net_device));
  229. dev->priv = kmalloc(sizeof(struct awc_private), GFP_KERNEL);
  230. if (!dev->priv ) {printk(KERN_CRIT "out of mem on dev priv alloc n"); return NULL;};
  231. memset(dev->priv,0,sizeof(struct awc_private));
  232. // link->dev->minor = dev->minor;
  233. // link->dev->major = dev->major;
  234. /* The 4500-specific entries in the device structure. */
  235. // dev->tx_queue_len = tx_queue_len;
  236. dev->hard_start_xmit =  &awc_start_xmit;
  237. // dev->set_config =  &awc_config_misiganes,aga mitte awc_config;
  238. dev->get_stats =  &awc_get_stats;
  239. // dev->set_multicast_list =  &awc_set_multicast_list;
  240. dev->do_ioctl = &awc_ioctl;
  241. strcpy(dev->name, ((struct awc_private *)dev->priv)->node.dev_name);
  242. ether_setup(dev);
  243. dev->init = &awc_pcmcia_init;
  244. dev->open = &awc_pcmcia_open;
  245. dev->stop = &awc_pcmcia_close;
  246. link->priv = dev;
  247. #if CS_RELEASE_CODE > 0x2911
  248. link->irq.Instance = dev;
  249. #endif
  250. /* Register with Card Services */
  251. link->next = dev_list;
  252. dev_list = link;
  253.         
  254. client_reg.dev_info = &dev_info;
  255. client_reg.Attributes = INFO_IO_CLIENT | INFO_CARD_SHARE;
  256. client_reg.EventMask =
  257. CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL |
  258. CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET |
  259. CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME;
  260. client_reg.event_handler = &awc_event;
  261. client_reg.Version = 0x0210;
  262. client_reg.event_callback_args.client_data = link;
  263. ret = CardServices(RegisterClient, &link->handle, &client_reg);
  264. if (ret != 0) {
  265. cs_error(link->handle, RegisterClient, ret);
  266. awc_detach(link);
  267. return NULL;
  268. }
  269. return link;
  270. } /* awc_attach */
  271. /*
  272. This deletes a driver "instance".  The device is de-registered
  273. with Card Services.  If it has been released, all local data
  274. structures are freed.  Otherwise, the structures will be freed
  275. when the device is released.
  276. */
  277. static void awc_detach(dev_link_t *link)
  278. {
  279. dev_link_t **linkp;
  280. long flags;
  281. int i=0;
  282. DEBUG(0, "awc_detach(0x%p)n", link);
  283. /* Locate device structure */
  284. for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
  285. if (*linkp == link) break;
  286. if (*linkp == NULL)
  287. return;
  288. save_flags(flags);
  289. cli();
  290. if (link->state & DEV_RELEASE_PENDING) {
  291. del_timer(&link->release);
  292. link->state &= ~DEV_RELEASE_PENDING;
  293. }
  294. restore_flags(flags);
  295. if (link->state & DEV_CONFIG) {
  296. awc_release((u_long)link);
  297. if (link->state & DEV_STALE_CONFIG) {
  298. link->state |= DEV_STALE_LINK;
  299. return;
  300. }
  301. }
  302. if (link->handle)
  303. CardServices(DeregisterClient, link->handle);
  304. /* Unlink device structure, free bits */
  305. *linkp = link->next;
  306. i=0;
  307. while ( i < MAX_AWCS) {
  308. if (!aironet4500_devices[i])
  309. {i++; continue;}
  310. if (aironet4500_devices[i] == link->priv){
  311. if (awc_proc_unset_fun)
  312. awc_proc_unset_fun(i);
  313. aironet4500_devices[i]=0;
  314. }
  315. i++;
  316. }
  317. if (link->priv) {
  318. //struct net_device *dev = link->priv;
  319. // dam dam damn mif (dev->priv)
  320. // kfree(dev->priv);
  321. kfree(link->priv);
  322. }
  323. kfree(link->dev);
  324. kfree(link);
  325. } /* awc_detach */
  326. /*
  327. awc_pcmcia_config() is scheduled to run after a CARD_INSERTION event
  328. is received, to configure the PCMCIA socket, and to make the
  329. ethernet device available to the system.
  330. */
  331. #define CS_CHECK(fn, args...) 
  332. while ((last_ret=CardServices(last_fn=(fn), args))!=0) goto cs_failed
  333. static void awc_pcmcia_config(dev_link_t *link)
  334. {
  335. client_handle_t handle;
  336. struct net_device *dev;
  337. struct awc_private *lp;
  338. tuple_t tuple;
  339. int ii;
  340. cisparse_t parse;
  341. u_short buf[64];
  342. int last_fn, last_ret, i = 0;
  343. // int ioaddr;
  344. u16 *phys_addr;
  345. int retval;
  346. handle = link->handle;
  347. dev = link->priv;
  348. phys_addr = (u16 *)dev->dev_addr;
  349. PC_DEBUG(0, "awc_pcmcia_config(0x%p)n", link);
  350. tuple.Attributes = 0;
  351. tuple.DesiredTuple = CISTPL_CONFIG;
  352. CS_CHECK(GetFirstTuple, handle, &tuple);
  353. tuple.TupleData = (cisdata_t *)buf;
  354. tuple.TupleDataMax = 64;
  355. tuple.TupleOffset = 0;
  356. CS_CHECK(GetTupleData, handle, &tuple);
  357. CS_CHECK(ParseTuple, handle, &tuple, &parse);
  358. link->conf.ConfigBase = parse.config.base;
  359. link->conf.Present = parse.config.rmask[0];
  360. /* Configure card */
  361. link->state |= DEV_CONFIG;
  362.       tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
  363.         CS_CHECK(GetFirstTuple, handle, &tuple);
  364.      while (1) {
  365. cistpl_cftable_entry_t dflt = { 0 };
  366. cistpl_cftable_entry_t *cfg = &(parse.cftable_entry);
  367. CFG_CHECK(GetTupleData, handle, &tuple);
  368. CFG_CHECK(ParseTuple, handle, &tuple, &parse);
  369. if (cfg->flags & CISTPL_CFTABLE_DEFAULT) dflt = *cfg;
  370. if (cfg->index == 0) goto next_entry;
  371. link->conf.ConfigIndex = cfg->index;
  372. /* Use power settings for Vcc and Vpp if present */
  373. /*  Note that the CIS values need to be rescaled */
  374. if (cfg->vcc.present & (1<<CISTPL_POWER_VNOM))
  375.     link->conf.Vcc = cfg->vcc.param[CISTPL_POWER_VNOM]/10000;
  376. else if (dflt.vcc.present & (1<<CISTPL_POWER_VNOM))
  377.     link->conf.Vcc = dflt.vcc.param[CISTPL_POWER_VNOM]/10000;
  378.     
  379. if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM))
  380.     link->conf.Vpp1 = link->conf.Vpp2 =
  381. cfg->vpp1.param[CISTPL_POWER_VNOM]/10000;
  382. else if (dflt.vpp1.present & (1<<CISTPL_POWER_VNOM))
  383.     link->conf.Vpp1 = link->conf.Vpp2 =
  384. dflt.vpp1.param[CISTPL_POWER_VNOM]/10000;
  385. /* Do we need to allocate an interrupt? */
  386. if (cfg->irq.IRQInfo1 || dflt.irq.IRQInfo1)
  387.     link->conf.Attributes |= CONF_ENABLE_IRQ;
  388. /* IO window settings */
  389. link->io.NumPorts1 = link->io.NumPorts2 = 0;
  390. if ((cfg->io.nwin > 0) || (dflt.io.nwin > 0)) {
  391.      cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt.io;
  392.      link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
  393.      if (!(io->flags & CISTPL_IO_8BIT))
  394. link->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
  395.      if (!(io->flags & CISTPL_IO_16BIT)) {
  396.     
  397. link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
  398. printk(KERN_CRIT "8-bit IO not supported on this aironet 4500 driver n");
  399.      }
  400.      link->io.BasePort1 = io->win[0].base;
  401.     
  402.      link->io.NumPorts1 = io->win[0].len;
  403.      if (io->nwin > 1) {
  404. link->io.Attributes2 = link->io.Attributes1;
  405. link->io.BasePort2 = io->win[1].base;
  406. link->io.NumPorts2 = io->win[1].len;
  407.      }
  408. }
  409. ii = 0;
  410. last_fn = RequestIO;
  411. while ((last_ret = CardServices(RequestIO, link->handle, &link->io)) ){
  412. if (ii > 4) 
  413. goto cs_failed;
  414. link->io.BasePort1 = awc_ports[ii];
  415. ii++;
  416. };
  417. break;
  418.      next_entry:
  419. if (CardServices(GetNextTuple, handle, &tuple))
  420. break;
  421.      }
  422.     
  423.      if (link->conf.Attributes & CONF_ENABLE_IRQ){
  424. ii = 0;  last_fn = RequestIRQ; 
  425. while ((last_ret  = CardServices(RequestIRQ, link->handle, &link->irq)) ){
  426. ii++;
  427. while (!(irq_mask & (1 << ii) ) && ii < 15)
  428.   ii++;
  429. link->irq.IRQInfo2 = 1 << ii;
  430. if(ii > 15)
  431. goto cs_failed;
  432. printk("trying irq %d , mask %x n",ii, link->irq.IRQInfo2); 
  433.  
  434. };
  435. }
  436.      CS_CHECK(RequestConfiguration, link->handle, &link->conf);
  437.      dev->irq = link->irq.AssignedIRQ;
  438.      dev->base_addr = link->io.BasePort1;
  439. awc_private_init( dev);
  440. retval = register_netdev(dev);
  441. if (retval != 0) {
  442. printk(KERN_NOTICE "awc_cs: register_netdev() failed for dev %x retval %xn",(unsigned int)dev,retval);
  443. goto failed;
  444. }
  445.      if(awc_pcmcia_init(dev)) goto failed;
  446. i=0;
  447. while (aironet4500_devices[i] && i < MAX_AWCS-1) i++;
  448. if (!aironet4500_devices[i]){
  449. aironet4500_devices[i]=dev;
  450. if (awc_proc_set_fun)
  451. awc_proc_set_fun(i);
  452. }
  453. link->state &= ~DEV_CONFIG_PENDING;
  454. lp = (struct awc_private *)dev->priv;
  455. DEBUG(1,"pcmcia config complete on port %x n",(unsigned int)dev->base_addr);
  456. return;
  457. cs_failed:
  458. cs_error(link->handle, last_fn, last_ret);
  459. link->dev=NULL;
  460. failed:
  461. awc_release((u_long)link);
  462. return;
  463. } /* awc_pcmcia_config */
  464. /*
  465. After a card is removed, awc_release() will unregister the net
  466. device, and release the PCMCIA configuration.  If the device is
  467. still open, this will be postponed until it is closed.
  468. */
  469. static void awc_release(u_long arg)
  470. {
  471. dev_link_t *link = (dev_link_t *)arg;
  472. struct net_device *dev = link->priv;
  473. DEBUG(0, "awc_release(0x%p)n", link);
  474. if (link->open) {
  475. DEBUG(1, "awc_cs: release postponed, '%s' still openn",
  476.   link->dev->dev_name);
  477. link->state |= DEV_STALE_CONFIG;
  478. return;
  479. }
  480. CardServices(ReleaseConfiguration, link->handle);
  481. CardServices(ReleaseIO, link->handle, &link->io);
  482. CardServices(ReleaseIRQ, link->handle, &link->irq);
  483. CardServices(ReleaseWindow, link->win);
  484. if (link->dev)
  485. unregister_netdev(dev);
  486. // link->dev = NULL;
  487. link->state &= ~DEV_CONFIG;
  488. if (link->state & DEV_STALE_LINK)
  489. awc_detach(link);
  490. } /* awc_release */
  491. /*
  492. The card status event handler.  Mostly, this schedules other
  493. stuff to run after an event is received.  A CARD_REMOVAL event
  494. also sets some flags to discourage the net drivers from trying
  495. to talk to the card any more.
  496. */
  497. static int awc_event(event_t event, int priority,
  498.    event_callback_args_t *args)
  499. {
  500. dev_link_t *link = args->client_data;
  501. struct net_device *dev = link->priv;
  502. PC_DEBUG(1, "awc_event(0x%06x)n", event);
  503. switch (event) {
  504. case CS_EVENT_CARD_REMOVAL:
  505. link->state &= ~DEV_PRESENT;
  506. if (link->state & DEV_CONFIG) {
  507. netif_device_detach(dev);
  508. link->release.expires = RUN_AT( HZ/20 );
  509. add_timer(&link->release);
  510. }
  511. break;
  512. case CS_EVENT_CARD_INSERTION:
  513. link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
  514. awc_pcmcia_config(link);
  515. break;
  516. case CS_EVENT_PM_SUSPEND:
  517. link->state |= DEV_SUSPEND;
  518. /* Fall through... */
  519. case CS_EVENT_RESET_PHYSICAL:
  520. if (link->state & DEV_CONFIG) {
  521. if (link->open)
  522. netif_device_detach(dev);
  523. CardServices(ReleaseConfiguration, link->handle);
  524. }
  525. break;
  526. case CS_EVENT_PM_RESUME:
  527. link->state &= ~DEV_SUSPEND;
  528. /* Fall through... */
  529. case CS_EVENT_CARD_RESET:
  530. if (link->state & DEV_CONFIG) {
  531. CardServices(RequestConfiguration, link->handle, &link->conf);
  532. if (link->open) {
  533. // awc_reset(dev);
  534. netif_device_attach(dev);
  535. }
  536. }
  537. break;
  538. }
  539. return 0;
  540. } /* awc_event */
  541.         
  542. static int __init aironet_cs_init(void)
  543. {
  544. servinfo_t serv;
  545. /* Always emit the version, before any failure. */
  546. printk(KERN_INFO"%s", awc_version);
  547. PC_DEBUG(0, "%sn", version);
  548. CardServices(GetCardServicesInfo, &serv);
  549. if (serv.Revision != CS_RELEASE_CODE) {
  550. printk(KERN_NOTICE "awc_cs: Card Services release "
  551.    "does not match!n");
  552. return -1;
  553. }
  554. register_pcmcia_driver(&dev_info, &awc_attach, &awc_detach);
  555. return 0;
  556. }
  557. static void __exit aironet_cs_exit(void)
  558. {
  559. DEBUG(0, "awc_cs: unloading %c ",'n');
  560. unregister_pcmcia_driver(&dev_info);
  561. while (dev_list != NULL) {
  562. if (dev_list->state & DEV_CONFIG)
  563. awc_release((u_long)dev_list);
  564. awc_detach(dev_list);
  565. }
  566.         
  567. // while (dev_list != NULL)
  568. // awc_detach(dev_list);
  569. }
  570. module_init(aironet_cs_init);
  571. module_exit(aironet_cs_exit);
  572. MODULE_LICENSE("GPL");