From f5fe9966d43c328a59405833a1b3f6ef8dd2cf87 Mon Sep 17 00:00:00 2001 From: Zhixiong Lin Date: Tue, 11 Jun 2019 15:21:58 +0800 Subject: [PATCH] GPU: Kconfig: add gpu Kconfig to video Kconfig Change-Id: I9938fe0377fc57e030c9e5109c216d6c62dbeef0 Signed-off-by: Zhixiong Lin --- drivers/gpu/Makefile | 2 +- drivers/video/Kconfig | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/Makefile b/drivers/gpu/Makefile index 835c88318cec..b66e520ebbdd 100644 --- a/drivers/gpu/Makefile +++ b/drivers/gpu/Makefile @@ -3,6 +3,6 @@ # taken to initialize them in the correct order. Link order is the only way # to ensure this currently. obj-$(CONFIG_TEGRA_HOST1X) += host1x/ -obj-y += drm/ vga/ +obj-y += drm/ vga/ arm/ obj-$(CONFIG_IMX_IPUV3_CORE) += ipu-v3/ obj-$(CONFIG_TRACE_GPU_MEM) += trace/ diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 427a993c7f57..8c0709102d5c 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -18,6 +18,7 @@ source "drivers/gpu/host1x/Kconfig" source "drivers/gpu/ipu-v3/Kconfig" source "drivers/gpu/drm/Kconfig" +source "drivers/gpu/arm/Kconfig" menu "Frame buffer Devices" source "drivers/video/fbdev/Kconfig"