Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 113330
b: refs/heads/master
c: 34a1b9f
h: refs/heads/master
v: v3
  • Loading branch information
David Woodhouse authored and Ingo Molnar committed Aug 13, 2008
1 parent aa22622 commit 9c4ae30
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: daa9c0fee1cbe1d49fbe29af3d4bb16312043b1e
refs/heads/master: 34a1b9fc4995102ecbb3a980b348aebf168d8196
7 changes: 5 additions & 2 deletions trunk/arch/x86/kernel/microcode_intel.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,11 @@ static void apply_microcode(int cpu)
return;
}
printk(KERN_INFO "microcode: CPU%d updated from revision "
"0x%x to 0x%x, date = %08x \n",
cpu_num, uci->rev, val[1], uci->mc.mc_intel->hdr.date);
"0x%x to 0x%x, date = %04x-%02x-%02x \n",
cpu_num, uci->rev, val[1],
uci->mc.mc_intel->hdr.date & 0xffff,
uci->mc.mc_intel->hdr.date >> 24,
(uci->mc.mc_intel->hdr.date >> 16) & 0xff);
uci->rev = val[1];
}

Expand Down

0 comments on commit 9c4ae30

Please sign in to comment.