Lines Matching full:driver
17 * parameters that control DRM driver registration.
19 * Below is an example of initializing a DRM driver for a device on the
30 * the PCI driver my_pci_drv. For more complex module initialization, you
31 * can still use module_init() and module_exit() in your driver.
47 * drm_module_pci_driver - Register a DRM driver for PCI-based devices
48 * @__pci_drv: the PCI driver structure
50 * Registers a DRM driver for devices on the PCI bus. The helper
79 * drm_module_pci_driver_if_modeset - Register a DRM driver for PCI-based devices
80 * @__pci_drv: the PCI driver structure
81 * @__modeset: an additional parameter that disables the driver
86 * Registers a DRM driver for devices on the PCI bus. The helper macro
87 * behaves like drm_module_pci_driver() with an additional driver-specific
88 * flag. If __modeset is 0, the driver has been disabled, if __modeset is
89 * -1 the driver state depends on the global DRM state. For all other
90 * values, the PCI driver has been enabled. The default should be -1.
110 * drm_module_platform_driver - Register a DRM driver for platform devices
111 * @__platform_drv: the platform driver structure
113 * Registers a DRM driver for devices on the platform bus. The helper