git: 31744051c8a1 - main - asmc: correctly label ASMC_KEY_FANMINSPEED as read-write
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 16 Apr 2026 06:06:24 UTC
The branch main has been updated by imp:
URL: https://cgit.FreeBSD.org/src/commit/?id=31744051c8a1c8baca219d93ace6e3e1a5463a45
commit 31744051c8a1c8baca219d93ace6e3e1a5463a45
Author: Marcus Gartner <magartner@gmail.com>
AuthorDate: 2026-04-11 02:02:52 +0000
Commit: Warner Losh <imp@FreeBSD.org>
CommitDate: 2026-04-16 06:05:20 +0000
asmc: correctly label ASMC_KEY_FANMINSPEED as read-write
Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/2137
---
sys/dev/asmc/asmcvar.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/asmc/asmcvar.h b/sys/dev/asmc/asmcvar.h
index 2c60181704e5..00857fe5fea8 100644
--- a/sys/dev/asmc/asmcvar.h
+++ b/sys/dev/asmc/asmcvar.h
@@ -109,7 +109,7 @@ struct asmc_softc {
#define ASMC_KEY_FANMANUAL "FS! " /* RW; 2 bytes */
#define ASMC_KEY_FANID "F%dID" /* RO; 16 bytes */
#define ASMC_KEY_FANSPEED "F%dAc" /* RO; 2 bytes */
-#define ASMC_KEY_FANMINSPEED "F%dMn" /* RO; 2 bytes */
+#define ASMC_KEY_FANMINSPEED "F%dMn" /* RW; 2 bytes */
#define ASMC_KEY_FANMAXSPEED "F%dMx" /* RO; 2 bytes */
#define ASMC_KEY_FANSAFESPEED "F%dSf" /* RO; 2 bytes */
#define ASMC_KEY_FANTARGETSPEED "F%dTg" /* RW; 2 bytes */