aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/mga
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2013-11-03 14:27:09 -0500
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-04-22 05:41:12 -0400
commitebfa4324930618e72645d2eb7db1c9773228a868 (patch)
tree19a540bb6aee83ea98a3436ca82cad8dfed7984f /drivers/gpu/drm/mga
parente090c53b21e97864a25ada5c8437d9776978a050 (diff)
drm: remove drm_dev_to_irq from drivers
Only used in some legacy pci drivers, and dereferencing the PCI irq is actually shorter ... Since this removes all users for drm_dev_to_irq from the tree except in drm_irq.c, move the inline helper in there. It'll disappear soon, too. v2: Polish commit message (Thierry) Reviewed-by: Thierry Reding <treding@nvidia.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/mga')
-rw-r--r--drivers/gpu/drm/mga/mga_state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/mga/mga_state.c b/drivers/gpu/drm/mga/mga_state.c
index 314685b7f41f..3cb58df5237e 100644
--- a/drivers/gpu/drm/mga/mga_state.c
+++ b/drivers/gpu/drm/mga/mga_state.c
@@ -1020,7 +1020,7 @@ static int mga_getparam(struct drm_device *dev, void *data, struct drm_file *fil
1020 1020
1021 switch (param->param) { 1021 switch (param->param) {
1022 case MGA_PARAM_IRQ_NR: 1022 case MGA_PARAM_IRQ_NR:
1023 value = drm_dev_to_irq(dev); 1023 value = dev->pdev->irq;
1024 break; 1024 break;
1025 case MGA_PARAM_CARD_TYPE: 1025 case MGA_PARAM_CARD_TYPE:
1026 value = dev_priv->chipset; 1026 value = dev_priv->chipset;