aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2022-09-03 12:52:44 +0000
committerGordon Bergling <gbe@FreeBSD.org>2022-09-06 05:39:13 +0000
commitaceb5fff0adb3e0620b2cd7a248305f015f112f1 (patch)
treebaaac2954c672cf2aec830ac2e5ab61a96c131f3
parentf3547e8452f4fbcbd4e0bb2ffb9f7c0c5a621398 (diff)
impi(4): Fix two typos in source code comments
- s/overriden/overridden/ (cherry picked from commit 05e1ac3cbfedf12e4b7a41729ad2ff6e748983a1)
-rw-r--r--sys/dev/ipmi/ipmi_isa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ipmi/ipmi_isa.c b/sys/dev/ipmi/ipmi_isa.c
index 1123f2849905..de21b59692e1 100644
--- a/sys/dev/ipmi/ipmi_isa.c
+++ b/sys/dev/ipmi/ipmi_isa.c
@@ -140,7 +140,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;
@@ -150,7 +150,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: