Lines Matching refs:driver

47 	dev->driver->driver_features =  in via_configure()
50 dev->driver->buf_priv_size = sizeof(drm_via_private_t); in via_configure()
51 dev->driver->load = via_driver_load; in via_configure()
52 dev->driver->unload = via_driver_unload; in via_configure()
53 dev->driver->lastclose = via_lastclose; in via_configure()
54 dev->driver->get_vblank_counter = via_get_vblank_counter; in via_configure()
55 dev->driver->enable_vblank = via_enable_vblank; in via_configure()
56 dev->driver->disable_vblank = via_disable_vblank; in via_configure()
57 dev->driver->irq_preinstall = via_driver_irq_preinstall; in via_configure()
58 dev->driver->irq_postinstall = via_driver_irq_postinstall; in via_configure()
59 dev->driver->irq_uninstall = via_driver_irq_uninstall; in via_configure()
60 dev->driver->irq_handler = via_driver_irq_handler; in via_configure()
61 dev->driver->dma_quiescent = via_driver_dma_quiescent; in via_configure()
63 dev->driver->ioctls = via_ioctls; in via_configure()
64 dev->driver->max_ioctl = via_max_ioctl; in via_configure()
66 dev->driver->name = DRIVER_NAME; in via_configure()
67 dev->driver->desc = DRIVER_DESC; in via_configure()
68 dev->driver->date = DRIVER_DATE; in via_configure()
69 dev->driver->major = DRIVER_MAJOR; in via_configure()
70 dev->driver->minor = DRIVER_MINOR; in via_configure()
71 dev->driver->patchlevel = DRIVER_PATCHLEVEL; in via_configure()
85 dev->driver = malloc(sizeof(struct drm_driver_info), DRM_MEM_DRIVER, in via_attach()
101 free(dev->driver, DRM_MEM_DRIVER); in via_detach()