mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't right-adjust the SMBus slave address for SSIF IPMI BMCs enumerated
via ACPI either. This is somewhat academic since we don't currently support such devices though.
This commit is contained in:
parent
bb6bb7fe1b
commit
3619ea6a08
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ ipmi_acpi_attach(device_t dev)
|
|||
case SSIF_MODE:
|
||||
if (ACPI_FAILURE(acpi_GetInteger(devh, "_ADR", &flags)))
|
||||
return (ENXIO);
|
||||
info.address = flags >> 1;
|
||||
info.address = flags;
|
||||
device_printf(dev, "SSIF interface not supported on ACPI\n");
|
||||
return (0);
|
||||
default:
|
||||
|
|
|
|||
Loading…
Reference in a new issue