diff options
| author | Gordon Bergling <gbe@FreeBSD.org> | 2022-09-03 12:52:44 +0000 |
|---|---|---|
| committer | Gordon Bergling <gbe@FreeBSD.org> | 2022-09-03 12:52:44 +0000 |
| commit | 05e1ac3cbfedf12e4b7a41729ad2ff6e748983a1 (patch) | |
| tree | 4613762cb7ec44b80827c4c60521f1eb0b6108aa /sys/dev/ipmi | |
| parent | 44cf1e5eb470380442fa8e240e213a71b8fe81d4 (diff) | |
Diffstat (limited to 'sys/dev/ipmi')
| -rw-r--r-- | sys/dev/ipmi/ipmi_isa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ipmi/ipmi_isa.c b/sys/dev/ipmi/ipmi_isa.c index 677a723b8b6d..e8bb0ffd5e0b 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: |
