Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d01cff40 authored by Dave Airlie's avatar Dave Airlie Committed by Dave Airlie
Browse files

drm: add mga driver callbacks



Add some missing driver callback for the PCI support

Signed-off-by: default avatarDave Airlie <airlied@linux.ie>
parent 6795c985
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -41,6 +41,12 @@
static int mga_driver_device_is_agp(drm_device_t * dev);
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->types[6] = _DRM_STAT_IRQ;
	dev->types[7] = _DRM_STAT_PRIMARY;
@@ -80,6 +86,8 @@ extern int mga_max_ioctl;

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,
	.preinit = mga_driver_preinit,
	.postcleanup = mga_driver_postcleanup,
	.pretakedown = mga_driver_pretakedown,
	.dma_quiescent = mga_driver_dma_quiescent,
	.device_is_agp = mga_driver_device_is_agp,