diff options
author | 2024-10-29 19:13:07 +0800 | |
---|---|---|
committer | 2024-11-01 11:52:06 +0800 | |
commit | 89115aeecf38bfee3c5e79561b5c34a256e1a06a (patch) | |
tree | c224c306b0c837e9b6ac9b01bec21378fad6ce72 | |
parent | MAINTAINERS: Remove myself as a VKMS maintainer (diff) | |
download | wireguard-linux-89115aeecf38bfee3c5e79561b5c34a256e1a06a.tar.xz wireguard-linux-89115aeecf38bfee3c5e79561b5c34a256e1a06a.zip |
drm/mediatek: Drop dependency on ARM
The recent attempt to make the MediaTek DRM driver build for non-ARM
compile tests made the driver unbuildable for arm64 platforms. Since
this is used on both ARM and arm64 platforms, just drop the dependency
on ARM.
Fixes: d2db0b8fd70b ("drm/mediatek: Allow build with COMPILE_TEST=y")
Reviewed-by: CK Hu <ck.hu@mediatek.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241029111309.737263-1-wenst@chromium.org
Signed-off-by: Chen-Yu Tsai <wenst@chromium.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/gpu/drm/mediatek/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/mediatek/Kconfig b/drivers/gpu/drm/mediatek/Kconfig index 2e0e7c4079b6..f496e6cfdfe0 100644 --- a/drivers/gpu/drm/mediatek/Kconfig +++ b/drivers/gpu/drm/mediatek/Kconfig @@ -2,7 +2,7 @@ config DRM_MEDIATEK tristate "DRM Support for Mediatek SoCs" depends on DRM - depends on (ARCH_MEDIATEK && ARM) || COMPILE_TEST + depends on ARCH_MEDIATEK || COMPILE_TEST depends on COMMON_CLK depends on HAVE_ARM_SMCCC || COMPILE_TEST depends on OF |