Lines Matching refs:driver

88 	dev->driver->driver_features =  in mga_configure()
92 dev->driver->buf_priv_size = sizeof(drm_mga_buf_priv_t); in mga_configure()
93 dev->driver->load = mga_driver_load; in mga_configure()
94 dev->driver->unload = mga_driver_unload; in mga_configure()
95 dev->driver->lastclose = mga_driver_lastclose; in mga_configure()
96 dev->driver->get_vblank_counter = mga_get_vblank_counter; in mga_configure()
97 dev->driver->enable_vblank = mga_enable_vblank; in mga_configure()
98 dev->driver->disable_vblank = mga_disable_vblank; in mga_configure()
99 dev->driver->irq_preinstall = mga_driver_irq_preinstall; in mga_configure()
100 dev->driver->irq_postinstall = mga_driver_irq_postinstall; in mga_configure()
101 dev->driver->irq_uninstall = mga_driver_irq_uninstall; in mga_configure()
102 dev->driver->irq_handler = mga_driver_irq_handler; in mga_configure()
103 dev->driver->dma_ioctl = mga_dma_buffers; in mga_configure()
104 dev->driver->dma_quiescent = mga_driver_dma_quiescent; in mga_configure()
105 dev->driver->device_is_agp = mga_driver_device_is_agp; in mga_configure()
107 dev->driver->ioctls = mga_ioctls; in mga_configure()
108 dev->driver->max_ioctl = mga_max_ioctl; in mga_configure()
110 dev->driver->name = DRIVER_NAME; in mga_configure()
111 dev->driver->desc = DRIVER_DESC; in mga_configure()
112 dev->driver->date = DRIVER_DATE; in mga_configure()
113 dev->driver->major = DRIVER_MAJOR; in mga_configure()
114 dev->driver->minor = DRIVER_MINOR; in mga_configure()
115 dev->driver->patchlevel = DRIVER_PATCHLEVEL; in mga_configure()
129 dev->driver = malloc(sizeof(struct drm_driver_info), DRM_MEM_DRIVER, in mga_attach()
145 free(dev->driver, DRM_MEM_DRIVER); in mga_detach()