Home
last modified time | relevance | path

Searched refs:dev0 (Results 1 – 15 of 15) sorted by relevance

/linux-2.4.37.9/drivers/net/
Ddgrs.c248 proc_reset(struct net_device *dev0, int reset) in proc_reset() argument
250 DGRS_PRIV *priv0 = (DGRS_PRIV *) dev0->priv; in proc_reset()
255 val = inl(dev0->base_addr + PLX_MISC_CSR); in proc_reset()
260 OUTL(dev0->base_addr + PLX_MISC_CSR, val); in proc_reset()
264 OUTB(dev0->base_addr + ES4H_PC, reset ? ES4H_PC_RESET : 0); in proc_reset()
272 check_board_dma(struct net_device *dev0) in check_board_dma() argument
274 DGRS_PRIV *priv0 = (DGRS_PRIV *) dev0->priv; in check_board_dma()
290 OUTL(dev0->base_addr + PLX_ROM_BASE_ADDR, 0x80000000); in check_board_dma()
305 OUTL(dev0->base_addr + PLX_BUS_REGION, 0x49430343); in check_board_dma()
313 printk("%s: can't *remap() the DMA regs\n", dev0->name); in check_board_dma()
[all …]
Dskge.c3384 struct net_device *dev0, *dev1; in skge_remove() local
3391 dev0 = hw->dev[0]; in skge_remove()
3392 unregister_netdev(dev0); in skge_remove()
3409 free_netdev(dev0); in skge_remove()
Dsky2.c3194 struct net_device *dev0, *dev1; in sky2_remove() local
3201 dev0 = hw->dev[0]; in sky2_remove()
3205 unregister_netdev(dev0); in sky2_remove()
3219 free_netdev(dev0); in sky2_remove()
/linux-2.4.37.9/drivers/md/
Dlinear.c92 table->dev0 = disk; in linear_run()
133 if (block >= (hash->dev0->size + hash->dev0->offset)) { in linear_make_request()
142 tmp_dev = hash->dev0; in linear_make_request()
168 partition_name(conf->hash_table[j].dev0->dev)); in linear_status()
/linux-2.4.37.9/Documentation/
Dmd.txt10 md=<md device no.>,<raid level>,<chunk size factor>,<fault level>,dev0,dev1,...,devn
13 md=<md device no.>,dev0,dev1,...,devn
31 dev0-devn: e.g. /dev/hda1,/dev/hdc1,/dev/sda1,/dev/sdb1
/linux-2.4.37.9/drivers/pcmcia/
Dcardbus.c309 struct pci_dev *dev, dev0; in cb_scan_new_bus() local
318 memset(&dev0, 0, sizeof(dev0)); in cb_scan_new_bus()
319 dev0.bus = bus; in cb_scan_new_bus()
320 dev0.sysdata = bus->sysdata; in cb_scan_new_bus()
324 dev0.devfn = devfn; in cb_scan_new_bus()
325 cb_scan_slot(&dev0, &found); in cb_scan_new_bus()
/linux-2.4.37.9/drivers/hotplug/
Dshpchp_pci.c227 struct pci_dev dev0; in shpchp_configure_device() local
239 memset(&dev0, 0, sizeof(struct pci_dev)); in shpchp_configure_device()
253 dev0.bus = ctrl->pci_dev->subordinate; in shpchp_configure_device()
254 dbg("%s: dev0.bus %p\n", __FUNCTION__, dev0.bus); in shpchp_configure_device()
255 dev0.bus->number = func->bus; in shpchp_configure_device()
257 dev0.devfn = PCI_DEVFN(func->device, func->function); in shpchp_configure_device()
258 dev0.sysdata = ctrl->pci_dev->sysdata; in shpchp_configure_device()
263 dbg("%s: dev0.irq %x\n", __FUNCTION__, dev0.irq); in shpchp_configure_device()
264 func->pci_dev = pci_scan_slot(&dev0); in shpchp_configure_device()
Dpciehp_pci.c227 struct pci_dev dev0; in pciehp_configure_device() local
237 memset(&dev0, 0, sizeof(struct pci_dev)); in pciehp_configure_device()
252 dev0.bus = ctrl->pci_dev->subordinate; in pciehp_configure_device()
253 dbg("%s: dev0.bus %p\n", __FUNCTION__, dev0.bus); in pciehp_configure_device()
254 dev0.bus->number = func->bus; in pciehp_configure_device()
256 dev0.devfn = PCI_DEVFN(func->device, func->function); in pciehp_configure_device()
257 dev0.sysdata = ctrl->pci_dev->sysdata; in pciehp_configure_device()
262 func->pci_dev = pci_scan_slot(&dev0); in pciehp_configure_device()
Dacpiphp_glue.c882 struct pci_dev dev0, *dev; in enable_device() local
905 memset(&dev0, 0, sizeof (struct pci_dev)); in enable_device()
907 dev0.bus = slot->bridge->pci_bus; in enable_device()
908 dev0.devfn = PCI_DEVFN(slot->device, 0); in enable_device()
909 dev0.sysdata = dev0.bus->sysdata; in enable_device()
912 dev = pci_scan_slot (&dev0); in enable_device()
Dibmphp_core.c1035 struct pci_dev dev0; in ibm_configure_device() local
1046 memset (&dev0, 0, sizeof (struct pci_dev)); in ibm_configure_device()
1054 dev0.bus = find_bus (func->busno); in ibm_configure_device()
1055 dev0.devfn = ((func->device << 3) + (func->function & 0x7)); in ibm_configure_device()
1056 dev0.sysdata = dev0.bus->sysdata; in ibm_configure_device()
1058 func->dev = pci_scan_slot (&dev0); in ibm_configure_device()
Dcpqphp_pci.c251 struct pci_dev dev0; in cpqhp_configure_device() local
261 memset(&dev0, 0, sizeof(struct pci_dev)); in cpqhp_configure_device()
269 dev0.bus = ctrl->pci_dev->bus; in cpqhp_configure_device()
270 dev0.devfn = (func->device << 3) + (func->function & 0x7); in cpqhp_configure_device()
271 dev0.sysdata = ctrl->pci_dev->sysdata; in cpqhp_configure_device()
274 func->pci_dev = pci_scan_slot(&dev0); in cpqhp_configure_device()
/linux-2.4.37.9/include/linux/raid/
Dlinear.h16 dev_info_t *dev0, *dev1; member
/linux-2.4.37.9/drivers/net/arcnet/
Dcom90xx.c409 static int __init com90xx_found(struct net_device *dev0, int ioaddr, int airq, in com90xx_found() argument
412 struct net_device *dev = dev0; in com90xx_found()
492 if (!dev0 && register_netdev(dev)) in com90xx_found()
507 if (!dev0) in com90xx_found()
/linux-2.4.37.9/drivers/pci/
Dpci.c1532 struct pci_dev *dev, dev0; in pci_do_scan_bus() local
1538 memset(&dev0, 0, sizeof(dev0)); in pci_do_scan_bus()
1539 dev0.bus = bus; in pci_do_scan_bus()
1540 dev0.sysdata = bus->sysdata; in pci_do_scan_bus()
1544 dev0.devfn = devfn; in pci_do_scan_bus()
1545 pci_scan_slot(&dev0); in pci_do_scan_bus()
/linux-2.4.37.9/drivers/scsi/
Dlibata-core.c1829 unsigned int dev0 = devmask & (1 << 0); in ata_bus_post_reset() local
1836 if (dev0) in ata_bus_post_reset()
1869 if (dev0) in ata_bus_post_reset()
1974 unsigned int dev0, dev1 = 0, rc = 0, devmask = 0; in ata_bus_reset() local
1980 dev0 = 1; in ata_bus_reset()
1982 dev0 = ata_devchk(ap, 0); in ata_bus_reset()
1987 if (dev0) in ata_bus_reset()