Fixed PICMG (ATCA) extension verification

- BCD encoded value "major" and "minor" fields were reversed
This commit is contained in:
Francois Isabelle 2008-10-23 17:48:33 +00:00
parent 3b08cc6002
commit b1cef77bcf

View File

@ -152,7 +152,7 @@ ipmi_openipmi_open(struct ipmi_intf * intf)
){
version_accepted = 1;
lprintf(LOG_DEBUG, "Discovered PICMG Extension %d.%d",
(rsp->data[1] >> 4), (rsp->data[1] & 0x0f));
(rsp->data[1] & 0x0f),(rsp->data[1] >> 4) );
}
}