From 0aa5b0923a1e11a4db659ecb4706eb69b4a9e606 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Tue, 10 Jul 2012 17:06:22 -0700 Subject: Fix date output in Microcode update Date and time are mixed up: microcode: updated to revision 0x12 date=2012-12-04 should be microcode: updated to revision 0x12 date=2012-04-12 Change-Id: I85f9100f31d88bb831bef07131f361c92c7ef34e Signed-off-by: Stefan Reinauer Reviewed-on: http://review.coreboot.org/1334 Reviewed-by: Patrick Georgi Reviewed-by: Alexandru Gagniuc Tested-by: build bot (Jenkins) --- src/cpu/intel/microcode/microcode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cpu/intel/microcode') diff --git a/src/cpu/intel/microcode/microcode.c b/src/cpu/intel/microcode/microcode.c index af83faf69d..e84bad9beb 100644 --- a/src/cpu/intel/microcode/microcode.c +++ b/src/cpu/intel/microcode/microcode.c @@ -127,8 +127,8 @@ void intel_update_microcode(const void *microcode_updates) #if !defined(__ROMCC__) printk(BIOS_DEBUG, "microcode: updated to revision " "0x%x date=%04x-%02x-%02x\n", new_rev, - m->date & 0xffff, (m->date >> 16) & 0xff, - (m->date >> 24) & 0xff); + m->date & 0xffff, (m->date >> 24) & 0xff, + (m->date >> 16) & 0xff); #endif break; } -- cgit v1.2.3