diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2010-08-24 00:53:27 +0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-08-30 03:38:50 +0400 |
commit | 793a97e4cc38f834e0488ccc1ecbfe52ff6f5b84 (patch) | |
tree | 418e5c4eef9c7566625829ddc823fa36c6a0d65e /drivers/gpu/drm/tdfx | |
parent | 690bb51b54a986e48c7b8b2dba51a3cd262a7266 (diff) | |
download | linux-793a97e4cc38f834e0488ccc1ecbfe52ff6f5b84.tar.xz |
drm: kill drm_map_ofs callbacks
All drivers happily copy&pasted the default implementation without
checking whether this callback is used at all. It's not. Sigh.
Kill it.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/tdfx')
-rw-r--r-- | drivers/gpu/drm/tdfx/tdfx_drv.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tdfx/tdfx_drv.c b/drivers/gpu/drm/tdfx/tdfx_drv.c index ec5a43e65722..38a562647d6f 100644 --- a/drivers/gpu/drm/tdfx/tdfx_drv.c +++ b/drivers/gpu/drm/tdfx/tdfx_drv.c @@ -42,7 +42,6 @@ static struct pci_device_id pciidlist[] = { static struct drm_driver driver = { .driver_features = DRIVER_USE_MTRR, .reclaim_buffers = drm_core_reclaim_buffers, - .get_map_ofs = drm_core_get_map_ofs, .get_reg_ofs = drm_core_get_reg_ofs, .fops = { .owner = THIS_MODULE, |