diff options
author | YueHaibing <yuehaibing@huawei.com> | 2022-03-12 09:34:37 +0300 |
---|---|---|
committer | Javier Martinez Canillas <javierm@redhat.com> | 2022-03-16 17:54:42 +0300 |
commit | 47042e0ddd218f100292cebc5208cb1eff7473b6 (patch) | |
tree | e37dff313abfe8cf8e11e000783b596d6715e1cb | |
parent | a4f24ada636dc0262621213988f0d15beb5596bb (diff) | |
download | linux-47042e0ddd218f100292cebc5208cb1eff7473b6.tar.xz |
drm/solomon: Make DRM_SSD130X depends on MMU
WARNING: unmet direct dependencies detected for DRM_GEM_SHMEM_HELPER
Depends on [n]: HAS_IOMEM [=y] && DRM [=m] && MMU [=n]
Selected by [m]:
- DRM_SSD130X [=m] && HAS_IOMEM [=y] && DRM [=m]
DRM_GEM_SHMEM_HELPER depends on MMU, DRM_SSD130X should also depends on MMU.
Fixes: a61732e80867 ("drm: Add driver for Solomon SSD130x OLED displays")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Acked-by: Javier Martinez Canillas <javierm@redhat.com>
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220312063437.19160-1-yuehaibing@huawei.com
-rw-r--r-- | drivers/gpu/drm/solomon/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/solomon/Kconfig b/drivers/gpu/drm/solomon/Kconfig index 5861c3ab7c45..6230369505c9 100644 --- a/drivers/gpu/drm/solomon/Kconfig +++ b/drivers/gpu/drm/solomon/Kconfig @@ -1,6 +1,6 @@ config DRM_SSD130X tristate "DRM support for Solomon SSD130x OLED displays" - depends on DRM + depends on DRM && MMU select BACKLIGHT_CLASS_DEVICE select DRM_GEM_SHMEM_HELPER select DRM_KMS_HELPER |