msrtool: Remove some unneeded casts

Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Peter Stuge <peter@stuge.se>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5565 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
diff --git a/util/msrtool/msrutils.c b/util/msrtool/msrutils.c
index de3333e..5345275 100644
--- a/util/msrtool/msrutils.c
+++ b/util/msrtool/msrutils.c
@@ -77,11 +77,11 @@
 
 void hexprint(FILE *f, const struct msr val, const uint8_t bits) {
 	if (bits <= 4)
-		fprintf(f, "0x%x", (uint8_t)(val.lo & 0x0f));
+		fprintf(f, "0x%x", val.lo & 0x0f);
 	else if (bits <= 8)
-		fprintf(f, "0x%02x", (uint8_t)(val.lo & 0xff));
+		fprintf(f, "0x%02x", val.lo & 0xff);
 	else if (bits <= 16)
-		fprintf(f, "0x%04x", (uint16_t)(val.lo & 0xffff));
+		fprintf(f, "0x%04x", val.lo & 0xffff);
 	else if (bits <= 32)
 		fprintf(f, "0x%08x", val.lo);
 	else