summaryrefslogtreecommitdiffstats
path: root/tboot/txt.c
diff options
context:
space:
mode:
Diffstat (limited to 'tboot/txt.c')
-rw-r--r--tboot/txt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tboot/txt.c b/tboot/txt.c
index 3f7dcf1..3cafd68 100644
--- a/tboot/txt.c
+++ b/tboot/txt.c
@@ -561,6 +561,7 @@ bool txt_prepare_cpu(void)
{
unsigned long cr0;
uint64_t mcg_cap, mcg_stat, msr_efer, rflags;
+ unsigned int i;
/* must be running at CPL 0 => this is implicit in even getting this far */
/* since our bootstrap code loads a GDT, etc. */
@@ -631,7 +632,7 @@ bool txt_prepare_cpu(void)
/* check if all machine check regs are clear */
mcg_cap = rdmsr(MSR_MCG_CAP);
- for ( unsigned int i = 0; i < (mcg_cap & 0xff); i++ ) {
+ for ( i = 0; i < (mcg_cap & 0xff); i++ ) {
mcg_stat = rdmsr(MSR_MC0_STATUS + 4*i);
if ( mcg_stat & (1ULL << 63) ) {
printk(TBOOT_ERR"MCG[%u] = %Lx ERROR\n", i, mcg_stat);