git: bf72896aae8a - stable/13 - smartpqi(4): Fix two typos in kernel error messages
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 08 Nov 2022 07:06:43 UTC
The branch stable/13 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=bf72896aae8a01b8ef56a1b75aceb065585df102
commit bf72896aae8a01b8ef56a1b75aceb065585df102
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-10-25 11:17:20 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-11-08 07:06:34 +0000
smartpqi(4): Fix two typos in kernel error messages
- s/runnning/running/
(cherry picked from commit d53e97bb5490cdedb37bd4e25646c5379b196c93)
---
sys/dev/smartpqi/smartpqi_helper.c | 2 +-
sys/dev/smartpqi/smartpqi_init.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/dev/smartpqi/smartpqi_helper.c b/sys/dev/smartpqi/smartpqi_helper.c
index e6a5f6876b64..bdc5f6572d89 100644
--- a/sys/dev/smartpqi/smartpqi_helper.c
+++ b/sys/dev/smartpqi/smartpqi_helper.c
@@ -150,7 +150,7 @@ pqisrc_take_ctrl_offline(pqisrc_softstate_t *softs)
if (SIS_IS_KERNEL_PANIC(softs)) {
lockupcode = PCI_MEM_GET32(softs, &softs->ioa_reg->mb[7], LEGACY_SIS_SRCV_OFFSET_MAILBOX_7);
- DBG_ERR("Controller FW is not runnning, Lockup code = %x\n", lockupcode);
+ DBG_ERR("Controller FW is not running, Lockup code = %x\n", lockupcode);
}
else {
pqisrc_trigger_nmi_sis(softs);
diff --git a/sys/dev/smartpqi/smartpqi_init.c b/sys/dev/smartpqi/smartpqi_init.c
index 6a9cca23f72d..0b7ea1273e42 100644
--- a/sys/dev/smartpqi/smartpqi_init.c
+++ b/sys/dev/smartpqi/smartpqi_init.c
@@ -858,7 +858,7 @@ pqisrc_force_sis(pqisrc_softstate_t *softs)
int ret = PQI_STATUS_SUCCESS;
if (SIS_IS_KERNEL_PANIC(softs)) {
- DBG_INIT("Controller FW is not runnning");
+ DBG_INIT("Controller FW is not running");
return PQI_STATUS_FAILURE;
}