diff options
author | Joonyoung Shim <jy0922.shim@samsung.com> | 2016-02-03 15:42:45 +0300 |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2016-02-15 17:25:17 +0300 |
commit | c327cd635c5367d9d6b063dd2d8c78484d4e4fb3 (patch) | |
tree | 0ece908e0c1c53e170c4473c3fcb5a1f8923e3e3 /drivers | |
parent | bdbe58e6c60e49930d9c33e7d2b9a7789ed8c1a9 (diff) | |
download | linux-c327cd635c5367d9d6b063dd2d8c78484d4e4fb3.tar.xz |
drm/exynos: depend on ARCH_EXYNOS for DRM_EXYNOS
Because PLAT_SAMSUNG isn't include exynos SoCs for arm64, but
ARCH_EXYNOS can do it. And it also needs to add ARCH_S3C64XX instead of
PLAT_SAMSUNG.
Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/exynos/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/Kconfig b/drivers/gpu/drm/exynos/Kconfig index 83efca941388..f17d39279596 100644 --- a/drivers/gpu/drm/exynos/Kconfig +++ b/drivers/gpu/drm/exynos/Kconfig @@ -1,6 +1,6 @@ config DRM_EXYNOS tristate "DRM Support for Samsung SoC EXYNOS Series" - depends on OF && DRM && (PLAT_SAMSUNG || ARCH_MULTIPLATFORM) + depends on OF && DRM && (ARCH_S3C64XX || ARCH_EXYNOS || ARCH_MULTIPLATFORM) select DRM_KMS_HELPER select DRM_KMS_FB_HELPER select FB_CFB_FILLRECT |