From e1bbd222ab8ea12742f53465d98da260263f24c2 Mon Sep 17 00:00:00 2001 From: Laxman Dewangan Date: Thu, 17 Oct 2024 09:27:57 +0000 Subject: [PATCH] pva: Do not build for ACK Do not build PVA for android kernel as this is not required for Android. Bug 4911768 Change-Id: Ibc35c074a8a340afa57cd634e00399e408a416fb Signed-off-by: Laxman Dewangan --- drivers/video/tegra/host/pva/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/video/tegra/host/pva/Makefile b/drivers/video/tegra/host/pva/Makefile index b622284a..c2ed399c 100644 --- a/drivers/video/tegra/host/pva/Makefile +++ b/drivers/video/tegra/host/pva/Makefile @@ -1,7 +1,7 @@ - # SPDX-License-Identifier: GPL-2.0-only -# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. +# Copyright (c) 2023-2024, NVIDIA CORPORATION. All rights reserved. +ifndef CONFIG_TEGRA_SYSTEM_TYPE_ACK ifeq ($(CONFIG_TEGRA_OOT_MODULE),m) ifeq ($(findstring ack_src,$(NV_BUILD_KERNEL_OPTIONS)),) @@ -55,4 +55,4 @@ nvhost-pva-objs = \ obj-m += nvhost-pva.o endif endif - +endif