From 074a4a3e26600bc48b64bd83ee07e5420095f703 Mon Sep 17 00:00:00 2001 From: Laxman Dewangan Date: Tue, 18 Apr 2023 14:56:35 +0000 Subject: [PATCH] video: dc: Get rid of DP_SERIALIZER configs The config variables CONFIG_MAXIM_GMSL_DP_SERIALIZER and CONFIG_TI_FPDLINK_DP_SERIALIZER are set as m inside the Makefile for OOT build. As the dp serializer driver inside nvidia-oot only build as module and there is no Kconfig, remove these config variables. Bug 4074863 Change-Id: I1a104f8e289ca3de1325d9194090c87d0a9db189 Signed-off-by: Laxman Dewangan Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2889999 Reviewed-by: Prafull Suryawanshi Reviewed-by: svcacv Reviewed-by: Jonathan Hunter GVS: Gerrit_Virtual_Submit --- drivers/video/tegra/dc/bridge/Makefile | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/drivers/video/tegra/dc/bridge/Makefile b/drivers/video/tegra/dc/bridge/Makefile index af177596..2a268425 100644 --- a/drivers/video/tegra/dc/bridge/Makefile +++ b/drivers/video/tegra/dc/bridge/Makefile @@ -1,12 +1,5 @@ -# SPDX-License-Identifier: GPL-2.0 -# Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-License-Identifier: GPL-2.0-only +# Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. - -# Set config when build as OOT module. -ifeq ($(CONFIG_TEGRA_OOT_MODULE),m) -CONFIG_MAXIM_GMSL_DP_SERIALIZER := m -CONFIG_TI_FPDLINK_DP_SERIALIZER := m -endif - -obj-$(CONFIG_MAXIM_GMSL_DP_SERIALIZER) += maxim_gmsl_dp_serializer.o -obj-$(CONFIG_TI_FPDLINK_DP_SERIALIZER) += ti_fpdlink_dp_serializer.o +obj-m += maxim_gmsl_dp_serializer.o +obj-m += ti_fpdlink_dp_serializer.o