[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1218543944.2977.164.camel@pmac.infradead.org>
Date: Tue, 12 Aug 2008 13:25:44 +0100
From: David Woodhouse <dwmw2@...radead.org>
To: Shaohua Li <shaohua.li@...el.com>
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] Fix date output in x86 microcode driver.
The microcode stores its date in a uint32_t in some weird order
approximating pdp-endian. Rather than printing it like that, print it
properly in ISO standard form.
Signed-off-by: David Woodhouse <David.Woodhouse@...el.com>
diff --git a/arch/x86/kernel/microcode.c b/arch/x86/kernel/microcode.c
index 652fa5c..394fbdd 100644
--- a/arch/x86/kernel/microcode.c
+++ b/arch/x86/kernel/microcode.c
@@ -343,8 +343,9 @@ 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->hdr.date);
+ "0x%x to 0x%x, date = %04x-%02x-%02x \n",
+ cpu_num, uci->rev, val[1], uci->mc->hdr.date & 0xffff,
+ uci->mc->hdr.date >> 24, (uci->mc->hdr.date >> 16) & 0xff);
uci->rev = val[1];
}
--
David Woodhouse Open Source Technology Centre
David.Woodhouse@...el.com Intel Corporation
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists