git: 55e2f70f6ae1 - stable/14 - cpufreq: Fix the incorrect format
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 23 Jul 2026 10:01:02 UTC
The branch stable/14 has been updated by olce:
URL: https://cgit.FreeBSD.org/src/commit/?id=55e2f70f6ae1f13279b35497e8bd5cd9f9f0fc97
commit 55e2f70f6ae1f13279b35497e8bd5cd9f9f0fc97
Author: ShengYi Hung <aokblast@FreeBSD.org>
AuthorDate: 2026-06-25 01:13:17 +0000
Commit: Olivier Certner <olce@FreeBSD.org>
CommitDate: 2026-07-23 09:59:11 +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 24afc58cc88e..3ad4443e69dd 100644
--- a/sys/kern/kern_cpu.c
+++ b/sys/kern/kern_cpu.c
@@ -122,9 +122,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}
};