nuttx/drivers/devfreq/Kconfig
guanyi3 1e2f9745cb drivers/devfreq: remove default governor
It's better not to use global governor, as modifying one device will cause all devices' governor to be modified.

Signed-off-by: guanyi3 <guanyi3@xiaomi.com>
2026-08-08 15:23:54 -03:00

30 lines
581 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config DEVFREQ
bool "devfreq"
default n
---help---
devfreq framework, dynamic voltage frequency scaling(DVFS)
for device
if DEVFREQ
config DEVFREQ_PROCFS
bool "devfreq_procfs"
default n
depends on FS_PROCFS
select FS_PROCFS_REGISTER
---help---
devfreq procfs support
config DEVFREQ_PROCFS_QOS
bool "devfreq_procfs_qos"
default n
depends on DEVFREQ_PROCFS
---help---
devfreq procfs show qos requests and their callers
endif