Searched defs:pdev (Results 1 - 3 of 3) sorted by relevance

/external/kernel-headers/original/linux/
H A Dpnp.h222 static inline void *pnp_get_drvdata (struct pnp_dev *pdev) argument
224 return dev_get_drvdata(&pdev->dev);
227 static inline void pnp_set_drvdata (struct pnp_dev *pdev, void *data) argument
229 dev_set_drvdata(&pdev->dev, data);
H A Dpci.h507 void __iomem __must_check *pci_map_rom(struct pci_dev *pdev, size_t *size);
508 void __iomem __must_check *pci_map_rom_copy(struct pci_dev *pdev, size_t *size);
509 void pci_unmap_rom(struct pci_dev *pdev, void __iomem *rom);
510 void pci_remove_rom(struct pci_dev *pdev);
567 #define pci_pool_create(name, pdev, size, align, allocation) \
568 dma_pool_create(name, &pdev->dev, size, align, allocation)
682 #define pci_dma_burst_advice(pdev, strat, strategy_parameter) do { } while (0)
710 static inline void *pci_get_drvdata (struct pci_dev *pdev) argument
712 return dev_get_drvdata(&pdev->dev);
715 static inline void pci_set_drvdata (struct pci_dev *pdev, voi argument
723 pci_name(struct pci_dev *pdev) argument
[all...]
/external/qemu/
H A Dusb-linux.c171 USBHostDevice *pdev = hostdev_list; local
174 while (pdev) {
175 if (pdev == dev) {
180 prev = &pdev->next;
181 pdev = pdev->next;

Completed in 139 milliseconds