mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
14e0875760
The pm_qos family of APIs are used in relatively difficult to reproduce scenarios such as thermal throttling so they benefit from unit testing. Start by adding basic tests from the the freq_qos APIs. It includes tests for issues that were brought up on mailing lists: https://patchwork.kernel.org/patch/11252425/#23017005 https://patchwork.kernel.org/patch/11253421/ Signed-off-by: Leonard Crestez <leonard.crestez@nxp.com> Reviewed-by: Matthias Kaehlcke <mka@chromium.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
10 lines
398 B
Makefile
10 lines
398 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_PM) += sysfs.o generic_ops.o common.o qos.o runtime.o wakeirq.o
|
|
obj-$(CONFIG_PM_SLEEP) += main.o wakeup.o wakeup_stats.o
|
|
obj-$(CONFIG_PM_TRACE_RTC) += trace.o
|
|
obj-$(CONFIG_PM_GENERIC_DOMAINS) += domain.o domain_governor.o
|
|
obj-$(CONFIG_HAVE_CLK) += clock_ops.o
|
|
obj-$(CONFIG_PM_QOS_KUNIT_TEST) += qos-test.o
|
|
|
|
ccflags-$(CONFIG_DEBUG_DRIVER) := -DDEBUG
|