From b866f4df8e274b8a534f6a39d841815bad11f2a2 Mon Sep 17 00:00:00 2001 From: Laxman Dewangan Date: Wed, 26 Apr 2023 06:17:53 +0000 Subject: [PATCH] devfreq: Get rid of explicit header inclusion The required headers for devfreq driver are already included in the master makefile. Hence, it is not required to add include path explicitly. Bug 4087103 Change-Id: I44793d4584479ba8148da310172749cfb58b8332 Signed-off-by: Laxman Dewangan Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2894610 Reviewed-by: svcacv Reviewed-by: Johnny Liu GVS: Gerrit_Virtual_Submit --- drivers/devfreq/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/devfreq/Makefile b/drivers/devfreq/Makefile index 9265f015..45157b04 100644 --- a/drivers/devfreq/Makefile +++ b/drivers/devfreq/Makefile @@ -1,10 +1,12 @@ +# SPDX-License-Identifier: GPL-2.0-only +# Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved. + ccflags-y += -I$(srctree)/drivers/devfreq obj-$(CONFIG_DEVFREQ_GOV_WMARK_SIMPLE) += governor_wmark_simple.o obj-$(CONFIG_DEVFREQ_GOV_WMARK_ACTIVE) += governor_wmark_active.o ifeq ($(CONFIG_TEGRA_OOT_MODULE),m) - ccflags-y += -I$(srctree.nvidia)/include ccflags-y += -DGOVERNOR_POD_SCALING_V2_MODULE obj-m += governor_pod_scaling_v2.o else