aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/cpufreq
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2023-12-26 17:54:53 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2024-01-10 18:20:32 +0000
commitb2f0caf160993c30a0d0e3d52e8a2d03616908cd (patch)
tree0bf9a48ddece6c03d25279184db7db931a9bf1f4 /sys/dev/cpufreq
parente51b3d8e53cee7d6a36e34e1cd4d588593d71b40 (diff)
downloadsrc-b2f0caf160993c30a0d0e3d52e8a2d03616908cd.tar.gz
src-b2f0caf160993c30a0d0e3d52e8a2d03616908cd.zip
regulator: Move regulator code in dev/regulator
We've removed kernel option EXT_RESOURCES almost two years ago. While it was ok to have some code under a common 'extres' subdirectory at first, we now have a lot of consumer of it and we made it mandatory so no need to have it under a cryptic name. Reviewed by: emaste, imp Sponsored by: Beckhoff Automation GmbH & Co. KG Differential Revision: https://reviews.freebsd.org/D43194
Diffstat (limited to 'sys/dev/cpufreq')
-rw-r--r--sys/dev/cpufreq/cpufreq_dt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/cpufreq/cpufreq_dt.c b/sys/dev/cpufreq/cpufreq_dt.c
index 4dae7142b380..929eebfe7dc5 100644
--- a/sys/dev/cpufreq/cpufreq_dt.c
+++ b/sys/dev/cpufreq/cpufreq_dt.c
@@ -42,7 +42,7 @@
#include <dev/ofw/ofw_bus_subr.h>
#include <dev/clk/clk.h>
-#include <dev/extres/regulator/regulator.h>
+#include <dev/regulator/regulator.h>
#include "cpufreq_if.h"