diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-10-16 14:51:57 +0300 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-10-17 14:59:16 +0300 |
commit | eee9a2e0ad7c4c1fe5fa286dddf822116370f0c7 (patch) | |
tree | 09be70565269fbcfe89b05abf0bc3c1632cc71b8 /drivers/gpu/drm/cirrus | |
parent | 1bf01e1e357894e69b39853ead11d12c9aa40759 (diff) | |
download | linux-eee9a2e0ad7c4c1fe5fa286dddf822116370f0c7.tar.xz |
drm/shmem: drop DEFINE_DRM_GEM_SHMEM_FOPS
DEFINE_DRM_GEM_SHMEM_FOPS is identical
to DEFINE_DRM_GEM_FOPS now, drop it.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Acked-by: Rob Herring <robh@kernel.org>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20191016115203.20095-6-kraxel@redhat.com
Diffstat (limited to 'drivers/gpu/drm/cirrus')
-rw-r--r-- | drivers/gpu/drm/cirrus/cirrus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/cirrus/cirrus.c b/drivers/gpu/drm/cirrus/cirrus.c index 89d9e6fdeb8c..7d08d067e1a4 100644 --- a/drivers/gpu/drm/cirrus/cirrus.c +++ b/drivers/gpu/drm/cirrus/cirrus.c @@ -510,7 +510,7 @@ static void cirrus_mode_config_init(struct cirrus_device *cirrus) /* ------------------------------------------------------------------ */ -DEFINE_DRM_GEM_SHMEM_FOPS(cirrus_fops); +DEFINE_DRM_GEM_FOPS(cirrus_fops); static struct drm_driver cirrus_driver = { .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_ATOMIC, |