This is an automated email from the ASF dual-hosted git repository.
acassis pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 82fb0d8d063 drivers/usbhost: Separate the xHCI driver from the PCI bus.
new 14cac825be7 drivers/thermal: Rename the cpufreq cooling device to
devfreq.
new 7efdd31994b drivers/thermal: Cool a devfreq device instead of a
cpufreq policy.
new 0ebaa7bfbf0 sim/thermal: Exercise the devfreq cooling path.
new 9b7c7717f8a drivers/devfreq: Document the frequency table contract.
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../components/drivers/special/devfreq.rst | 14 +
Documentation/components/drivers/thermal/index.rst | 10 +-
boards/sim/sim/sim/configs/thermal/defconfig | 3 +
drivers/thermal/CMakeLists.txt | 4 +-
drivers/thermal/Kconfig | 32 ++-
drivers/thermal/Make.defs | 4 +-
drivers/thermal/thermal_core.c | 6 +-
drivers/thermal/thermal_core.h | 10 +-
drivers/thermal/thermal_cpufreq_cooling.c | 236 ---------------
drivers/thermal/thermal_devfreq_cooling.c | 316 +++++++++++++++++++++
drivers/thermal/thermal_dummy.c | 139 +++++----
include/nuttx/devfreq.h | 12 +-
12 files changed, 465 insertions(+), 321 deletions(-)
delete mode 100644 drivers/thermal/thermal_cpufreq_cooling.c
create mode 100644 drivers/thermal/thermal_devfreq_cooling.c