git: 22f80045a186 - stable/15 - cpufreq: Fix the incorrect format
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 24 Jul 2026 04:35:00 UTC
The branch stable/15 has been updated by olce:
URL: https://cgit.FreeBSD.org/src/commit/?id=22f80045a1869c3dd66aef0284fae32093ba5816
commit 22f80045a1869c3dd66aef0284fae32093ba5816
Author: ShengYi Hung <aokblast@FreeBSD.org>
AuthorDate: 2026-06-25 01:13:17 +0000
Commit: Olivier Certner <olce@FreeBSD.org>
CommitDate: 2026-07-24 04:33:34 +0000
cpufreq: Fix the incorrect format
Event: Halifax Hackathon 202606
Location: jrm@'s dining room
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D57275
(cherry picked from commit 35255280e51ca8f7a8f350b944aa6ffe42a7e5b5)
---
sys/kern/kern_cpu.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sys/kern/kern_cpu.c b/sys/kern/kern_cpu.c
index 03d2d38e1749..c1e20b6ed674 100644
--- a/sys/kern/kern_cpu.c
+++ b/sys/kern/kern_cpu.c
@@ -121,9 +121,9 @@ static device_method_t cpufreq_methods[] = {
DEVMETHOD(device_attach, cpufreq_attach),
DEVMETHOD(device_detach, cpufreq_detach),
- DEVMETHOD(cpufreq_set, cf_set_method),
- DEVMETHOD(cpufreq_get, cf_get_method),
- DEVMETHOD(cpufreq_levels, cf_levels_method),
+ DEVMETHOD(cpufreq_set, cf_set_method),
+ DEVMETHOD(cpufreq_get, cf_get_method),
+ DEVMETHOD(cpufreq_levels, cf_levels_method),
{0, 0}
};