Lines Matching refs:this_dev
526 int this_dev, found = 0; in init_module() local
528 for (this_dev = 0; this_dev < MAX_WD_CARDS; this_dev++) { in init_module()
529 if (io[this_dev] == 0) { in init_module()
530 if (this_dev != 0) break; /* only autoprobe 1st one */ in init_module()
536 dev->irq = irq[this_dev]; in init_module()
537 dev->base_addr = io[this_dev]; in init_module()
538 dev->mem_start = mem[this_dev]; in init_module()
539 dev->mem_end = mem_end[this_dev]; in init_module()
545 printk(KERN_WARNING "wd.c: No wd80x3 card found (i/o = 0x%x).\n", io[this_dev]); in init_module()
563 int this_dev; in cleanup_module() local
565 for (this_dev = 0; this_dev < MAX_WD_CARDS; this_dev++) { in cleanup_module()
566 struct net_device *dev = dev_wd[this_dev]; in cleanup_module()