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