git: 6d9d4b2da822 - main - ipmi(4): spelling fix cyle_wait -> cycle_wait
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 20 Jul 2022 11:35:55 UTC
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. */