From d177cae3fe851ae74ee0de337edcf066a5337107 Mon Sep 17 00:00:00 2001 From: Manish Bhardwaj Date: Tue, 24 May 2022 12:15:37 +0530 Subject: [PATCH] nvgpu: remove support of nvgpu driver Using this patch we are removing support of nvgpu driver for chain-c kernel. Since this driver is not needed in chain-c kernel. Bug 3655762 Signed-off-by: Manish Bhardwaj Change-Id: I7c3328438d5d17686476c924b8b0dfacd34f9ce0 Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2717262 Reviewed-by: svcacv Reviewed-by: Sagar Kamble Reviewed-by: Amlan Kundu Reviewed-by: Sandeep Trasi GVS: Gerrit_Virtual_Submit --- drivers/gpu/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/Makefile b/drivers/gpu/Makefile index 1a13b0983..9b6d29a33 100644 --- a/drivers/gpu/Makefile +++ b/drivers/gpu/Makefile @@ -1,2 +1,4 @@ # Choose this option if you have an SoC with integrated Nvidia GPU IP. +ifneq ($(CONFIG_ARCH_TEGRA_CHAIN_C), y) obj-m += nvgpu/ +endif