Files
kernel_common_drivers/drivers/cpufreq/Makefile
T
Chuan Liu 4a68842bee cpufreq: Remove the old cpufreq driver [1/1]
PD#SWPL-197269

Problem:
meson-cpufreq.c is the old version of the cpufreq driver, replaced by
the refactored aml-cpufreq.c.

Solution:
Removed

Verify:
S905X4

Change-Id: I6fddacef5bd5e8f8668ca547b1a947cdc7b1fb1d
Signed-off-by: Chuan Liu <chuan.liu@amlogic.com>
2025-01-06 17:31:51 -08:00

13 lines
375 B
Makefile

# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
ccflags-y += -I$(srctree)/drivers/regulator
ccflags-y += -I$(srctree)/drivers/opp
MODULE_NAME = amlogic-cpufreq
obj-$(CONFIG_AMLOGIC_MESON_CPUFREQ) = $(MODULE_NAME).o
$(MODULE_NAME)-y += aml_cpufreq.o
PR_FMT = $(subst amlogic-,,$(MODULE_NAME))
PR_FMT_DEFINE="-Dpr_fmt(fmt)= \"[$(PR_FMT)]: \" fmt"
ccflags-y += $(PR_FMT_DEFINE)