mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
drm: add mga driver callbacks
Add some missing driver callback for the PCI support Signed-off-by: Dave Airlie <airlied@linux.ie>
This commit is contained in:
parent
6795c985a6
commit
d01cff4080
@ -41,6 +41,12 @@
|
|||||||
static int mga_driver_device_is_agp(drm_device_t * dev);
|
static int mga_driver_device_is_agp(drm_device_t * dev);
|
||||||
static int postinit( struct drm_device *dev, unsigned long flags )
|
static int postinit( struct drm_device *dev, unsigned long flags )
|
||||||
{
|
{
|
||||||
|
drm_mga_private_t * const dev_priv =
|
||||||
|
(drm_mga_private_t *) dev->dev_private;
|
||||||
|
|
||||||
|
dev_priv->mmio_base = pci_resource_start(dev->pdev, 1);
|
||||||
|
dev_priv->mmio_size = pci_resource_len(dev->pdev, 1);
|
||||||
|
|
||||||
dev->counters += 3;
|
dev->counters += 3;
|
||||||
dev->types[6] = _DRM_STAT_IRQ;
|
dev->types[6] = _DRM_STAT_IRQ;
|
||||||
dev->types[7] = _DRM_STAT_PRIMARY;
|
dev->types[7] = _DRM_STAT_PRIMARY;
|
||||||
@ -80,6 +86,8 @@ extern int mga_max_ioctl;
|
|||||||
|
|
||||||
static struct drm_driver driver = {
|
static struct drm_driver driver = {
|
||||||
.driver_features = DRIVER_USE_AGP | DRIVER_REQUIRE_AGP | DRIVER_USE_MTRR | DRIVER_HAVE_DMA | DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_IRQ_VBL,
|
.driver_features = DRIVER_USE_AGP | DRIVER_REQUIRE_AGP | DRIVER_USE_MTRR | DRIVER_HAVE_DMA | DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_IRQ_VBL,
|
||||||
|
.preinit = mga_driver_preinit,
|
||||||
|
.postcleanup = mga_driver_postcleanup,
|
||||||
.pretakedown = mga_driver_pretakedown,
|
.pretakedown = mga_driver_pretakedown,
|
||||||
.dma_quiescent = mga_driver_dma_quiescent,
|
.dma_quiescent = mga_driver_dma_quiescent,
|
||||||
.device_is_agp = mga_driver_device_is_agp,
|
.device_is_agp = mga_driver_device_is_agp,
|
||||||
|
Loading…
Reference in New Issue
Block a user