git: 2346300eafb6 - main - clk: Correct SpacemitT typo
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 21 Aug 2026 13:51:04 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=2346300eafb6fc021581fbba4b5e757d227c7ac6
commit 2346300eafb6fc021581fbba4b5e757d227c7ac6
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2026-08-18 02:02:20 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2026-08-21 13:50:50 +0000
clk: Correct SpacemitT typo
SpacemiT has only one T.
Fixes: dcb10e3add17 ("clk: Initial support for the SpacemiT K1 clock control units")
Sponsored by: The FreeBSD Foundation
---
sys/dev/clk/spacemit/k1_apmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/clk/spacemit/k1_apmu.c b/sys/dev/clk/spacemit/k1_apmu.c
index 8869c7e74f47..8bcecb9bb6a2 100644
--- a/sys/dev/clk/spacemit/k1_apmu.c
+++ b/sys/dev/clk/spacemit/k1_apmu.c
@@ -80,7 +80,7 @@ k1_apmu_probe(device_t dev)
return (ENXIO);
if (!ofw_bus_is_compatible(dev, "spacemit,k1-syscon-apmu"))
return (ENXIO);
- device_set_desc(dev, "SpacemitT K1 APMU Clock Controller");
+ device_set_desc(dev, "SpacemiT K1 APMU Clock Controller");
return (BUS_PROBE_DEFAULT);
}