mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
4a68842bee
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>
13 lines
375 B
Makefile
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)
|