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:
John Baldwin 2009-02-03 16:39:51 +00:00
parent bb6bb7fe1b
commit 3619ea6a08
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=188078

View File

@ -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: