diff options
author | Samuel Holland <samuel@sholland.org> | 2022-04-24 11:26:23 -0500 |
---|---|---|
committer | Maxime Ripard <maxime@cerno.tech> | 2022-04-26 14:24:04 +0200 |
commit | 7d57f7f7975634a7a6c5b5adcfe70450426a830b (patch) | |
tree | 2a0931fb4d7e0d0f1db2d5a9311cda4abb08f128 /drivers/gpu/drm/sun4i/Kconfig | |
parent | adfda0bb86183ac3b5bb0c76813bfca0fe6d5166 (diff) | |
download | linux-stable-7d57f7f7975634a7a6c5b5adcfe70450426a830b.tar.gz linux-stable-7d57f7f7975634a7a6c5b5adcfe70450426a830b.tar.bz2 linux-stable-7d57f7f7975634a7a6c5b5adcfe70450426a830b.zip |
drm/sun4i: Allow building the driver on RISC-V
Allwinner D1 is a RISC-V SoC which contains a DE 2.0 engine. Let's
remove the dependency on a specific CPU architecture, so the driver can
be built wherever ARCH_SUNXI is selected.
Acked-by: Jernej Skrabec <jernej.skrabec@gmail.com>
Signed-off-by: Samuel Holland <samuel@sholland.org>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://patchwork.freedesktop.org/patch/msgid/20220424162633.12369-6-samuel@sholland.org
Diffstat (limited to 'drivers/gpu/drm/sun4i/Kconfig')
-rw-r--r-- | drivers/gpu/drm/sun4i/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/sun4i/Kconfig b/drivers/gpu/drm/sun4i/Kconfig index befc5a80222d..3a43c436c74a 100644 --- a/drivers/gpu/drm/sun4i/Kconfig +++ b/drivers/gpu/drm/sun4i/Kconfig @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-only config DRM_SUN4I tristate "DRM Support for Allwinner A10 Display Engine" - depends on DRM && (ARM || ARM64) && COMMON_CLK + depends on DRM && COMMON_CLK depends on ARCH_SUNXI || COMPILE_TEST select DRM_GEM_CMA_HELPER select DRM_KMS_HELPER |