Commit 70f95b76 authored by Corey Minyard's avatar Corey Minyard

ipmi: Fix the I2C address extraction from SPMI tables

Unlike everywhere else in the IPMI specification, the I2C address
specified in the SPMI table is not shifted to the left one bit with
the LSB zero.  Instead it is not shifted with the MSB zero.
Reported-by: default avatarSanjeev <singhsan@codeaurora.org>
Signed-off-by: default avatarCorey Minyard <cminyard@mvista.com>
parent 57a38f13
......@@ -1870,7 +1870,7 @@ static int try_init_spmi(struct SPMITable *spmi)
return -EIO;
}
myaddr = spmi->addr.address >> 1;
myaddr = spmi->addr.address & 0x7f;
return new_ssif_client(myaddr, NULL, 0, 0, SI_SPMI);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment