mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-31 16:57:10 +00: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
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=188078
@ -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 New Issue
Block a user