Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Jul 2022 11:35:55 GMT
From:      Eugene Grosbein <eugen@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 6d9d4b2da822 - main - ipmi(4): spelling fix cyle_wait -> cycle_wait
Message-ID:  <202207201135.26KBZt76005940@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by eugen:

URL: https://cgit.FreeBSD.org/src/commit/?id=6d9d4b2da822bc1c1c729b79ab3fe30c96c4c094

commit 6d9d4b2da822bc1c1c729b79ab3fe30c96c4c094
Author:     Eugene Grosbein <eugen@FreeBSD.org>
AuthorDate: 2022-07-20 11:32:24 +0000
Commit:     Eugene Grosbein <eugen@FreeBSD.org>
CommitDate: 2022-07-20 11:32:24 +0000

    ipmi(4): spelling fix cyle_wait -> cycle_wait
    
    There are no consumers of hw.ipmi.cyle_wait in our tree.
    Also the knob is undocumented, so it should be safe to fix its name.
    No MFC planned, though.
---
 sys/dev/ipmi/ipmi.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/dev/ipmi/ipmi.c b/sys/dev/ipmi/ipmi.c
index fd264dfc4c27..d79690d55c68 100644
--- a/sys/dev/ipmi/ipmi.c
+++ b/sys/dev/ipmi/ipmi.c
@@ -110,7 +110,7 @@ SYSCTL_INT(_hw_ipmi, OID_AUTO, wd_startup_countdown, CTLFLAG_RDTUN,
 SYSCTL_INT(_hw_ipmi, OID_AUTO, wd_pretimeout_countdown, CTLFLAG_RWTUN,
 	&wd_pretimeout_countdown, 0,
 	"IPMI watchdog pre-timeout countdown (seconds)");
-SYSCTL_INT(_hw_ipmi, OID_AUTO, cyle_wait, CTLFLAG_RWTUN,
+SYSCTL_INT(_hw_ipmi, OID_AUTO, cycle_wait, CTLFLAG_RWTUN,
 	&cycle_wait, 0,
 	"IPMI power cycle on reboot delay time (seconds)");
 
@@ -794,7 +794,7 @@ ipmi_power_cycle(void *arg, int howto)
 	}
 
 	/*
-	 * BMCs are notoriously slow, give it cyle_wait seconds for the power
+	 * BMCs are notoriously slow, give it cycle_wait seconds for the power
 	 * down leg of the power cycle. If that fails, fallback to the next
 	 * hanlder in the shutdown_final chain and/or the platform failsafe.
 	 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202207201135.26KBZt76005940>