soc/skylake/vr_config: print mch_id in hex
Change-Id: I89e2bccf3fb99b20dde38745fc124d5dc95feb78 Signed-off-by: Maxim Polyakov <max.senia.poliak@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36374 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
parent
b7f117dd52
commit
5f2576089f
|
@ -227,7 +227,7 @@ static uint16_t get_sku_icc_max(int domain)
|
|||
return icc_max[domain];
|
||||
}
|
||||
default:
|
||||
printk(BIOS_ERR, "ERROR: Unknown MCH (%u) in VR-config\n", mch_id);
|
||||
printk(BIOS_ERR, "ERROR: Unknown MCH (0x%x) in VR-config\n", mch_id);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -297,7 +297,7 @@ static uint16_t get_sku_ac_dc_loadline(const int domain)
|
|||
return loadline[domain];
|
||||
}
|
||||
default:
|
||||
printk(BIOS_ERR, "ERROR: Unknown MCH (%u) in VR-config\n", mch_id);
|
||||
printk(BIOS_ERR, "ERROR: Unknown MCH (0x%x) in VR-config\n", mch_id);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue