southbridge/intel/bd82x6x/me_8.x.c: Trivial - space to tab fix
Change-Id: I5b6d0a1f5f96a8d6cfc5a14baaa0f9267339b072 Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: http://review.coreboot.org/6268 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
parent
8f3de28af3
commit
152e517877
|
@ -392,11 +392,10 @@ static int mkhi_get_fwcaps(mefwcaps_sku *cap)
|
|||
};
|
||||
|
||||
/* Send request and wait for response */
|
||||
if (mei_sendrecv(&mei, &mkhi, &rule_id, &cap_msg, sizeof(cap_msg))
|
||||
< 0) {
|
||||
if (mei_sendrecv(&mei, &mkhi, &rule_id, &cap_msg, sizeof(cap_msg)) < 0) {
|
||||
printk(BIOS_ERR, "ME: GET FWCAPS message failed\n");
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
*cap = cap_msg.caps_sku;
|
||||
return 0;
|
||||
}
|
||||
|
@ -420,7 +419,7 @@ static void me_print_fwcaps(mbp_fw_caps *caps_section)
|
|||
print_cap("IntelR Capability Licensing Service (CLS)", cap->intel_cls);
|
||||
print_cap("IntelR Power Sharing Technology (MPC)", cap->intel_mpc);
|
||||
print_cap("ICC Over Clocking", cap->icc_over_clocking);
|
||||
print_cap("Protected Audio Video Path (PAVP)", cap->pavp);
|
||||
print_cap("Protected Audio Video Path (PAVP)", cap->pavp);
|
||||
print_cap("IPV6", cap->ipv6);
|
||||
print_cap("KVM Remote Control (KVM)", cap->kvm);
|
||||
print_cap("Outbreak Containment Heuristic (OCH)", cap->och);
|
||||
|
|
Loading…
Reference in New Issue