git: 35255280e51c - main - cpufreq: Fix the incorrect format
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 25 Jun 2026 01:19:39 UTC
The branch main has been updated by olce:
URL: https://cgit.FreeBSD.org/src/commit/?id=35255280e51ca8f7a8f350b944aa6ffe42a7e5b5
commit 35255280e51ca8f7a8f350b944aa6ffe42a7e5b5
Author: ShengYi Hung <aokblast@FreeBSD.org>
AuthorDate: 2026-06-25 01:13:17 +0000
Commit: Olivier Certner <olce@FreeBSD.org>
CommitDate: 2026-06-25 01:17:37 +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
---
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}
};