git: 9d531b2d41ae - stable/12 - impi(4): Fix two typos in source code comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 06 Sep 2022 05:48:15 UTC
The branch stable/12 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=9d531b2d41aeb3f8c9794c12f861235e5ea88846
commit 9d531b2d41aeb3f8c9794c12f861235e5ea88846
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-09-03 12:52:44 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-09-06 05:46:09 +0000
impi(4): Fix two typos in source code comments
- s/overriden/overridden/
(cherry picked from commit 05e1ac3cbfedf12e4b7a41729ad2ff6e748983a1)
---
sys/dev/ipmi/ipmi_isa.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/dev/ipmi/ipmi_isa.c b/sys/dev/ipmi/ipmi_isa.c
index cdff305b07ec..d53c58572ff6 100644
--- a/sys/dev/ipmi/ipmi_isa.c
+++ b/sys/dev/ipmi/ipmi_isa.c
@@ -139,7 +139,7 @@ ipmi_hint_identify(device_t dev, struct ipmi_get_info *info)
bus_delete_resource(dev, SYS_RES_IOPORT, i);
}
- /* Allow the I/O address to be overriden via hints. */
+ /* Allow the I/O address to be overridden via hints. */
if (resource_int_value(name, unit, "port", &val) == 0 && val != 0) {
info->address = val;
info->io_mode = 1;
@@ -149,7 +149,7 @@ ipmi_hint_identify(device_t dev, struct ipmi_get_info *info)
info->io_mode = 0;
}
- /* Allow the spacing to be overriden. */
+ /* Allow the spacing to be overridden. */
if (resource_int_value(name, unit, "spacing", &val) == 0) {
switch (val) {
case 8: