Lines Matching refs:dev

1125 		info->dev	      = int_cfb_info->fb.device;  in cyber2000fb_attach()
1237 cfb->ddc_adapter.dev.parent = cfb->fb.device; in cyber2000fb_setup_ddc_bus()
1311 cfb->i2c_adapter.dev.parent = cfb->fb.device; in cyber2000fb_i2c_register()
1714 static int cyberpro_pci_probe(struct pci_dev *dev, in cyberpro_pci_probe() argument
1723 err = aperture_remove_conflicting_pci_devices(dev, name); in cyberpro_pci_probe()
1727 err = pci_enable_device(dev); in cyberpro_pci_probe()
1736 err = pci_request_regions(dev, cfb->fb.fix.id); in cyberpro_pci_probe()
1740 cfb->irq = dev->irq; in cyberpro_pci_probe()
1741 cfb->region = pci_ioremap_bar(dev, 0); in cyberpro_pci_probe()
1748 cfb->fb.device = &dev->dev; in cyberpro_pci_probe()
1749 cfb->fb.fix.mmio_start = pci_resource_start(dev, 0) + MMIO_OFFSET; in cyberpro_pci_probe()
1750 cfb->fb.fix.smem_start = pci_resource_start(dev, 0); in cyberpro_pci_probe()
1785 pci_set_drvdata(dev, cfb); in cyberpro_pci_probe()
1794 pci_release_regions(dev); in cyberpro_pci_probe()
1798 pci_disable_device(dev); in cyberpro_pci_probe()
1802 static void cyberpro_pci_remove(struct pci_dev *dev) in cyberpro_pci_remove() argument
1804 struct cfb_info *cfb = pci_get_drvdata(dev); in cyberpro_pci_remove()
1814 pci_release_regions(dev); in cyberpro_pci_remove()
1815 pci_disable_device(dev); in cyberpro_pci_remove()
1819 static int __maybe_unused cyberpro_pci_suspend(struct device *dev) in cyberpro_pci_suspend() argument
1827 static int __maybe_unused cyberpro_pci_resume(struct device *dev) in cyberpro_pci_resume() argument
1829 struct cfb_info *cfb = dev_get_drvdata(dev); in cyberpro_pci_resume()