[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <4c64489b11469c2a9e@agluck-desktop.sc.intel.com>
Date: Thu, 12 Aug 2010 12:16:43 -0700
From: "Luck, Tony" <tony.luck@...el.com>
To: "Greg KH" <gregkh@...e.de>
Cc: linux-kernel@...r.kernel.org,
"Samium Gromoff" <_deepfire@...lingofgreen.ru>,
"Randy Dunlap" <randy.dunlap@...cle.com>,
"KOSAKI Motohiro" <kosaki.motohiro@...fujitsu.com>,
"Andrew Morton" <akpm@...ux-foundation.org>
Subject: [PATCH] print early console device address in hex
Device addresses are usually printed in hex.
Signed-off-by: Tony Luck <tony.luck@...el.com>
---
diff --git a/drivers/serial/8250_early.c b/drivers/serial/8250_early.c
index b745792..eaafb98 100644
--- a/drivers/serial/8250_early.c
+++ b/drivers/serial/8250_early.c
@@ -203,13 +203,13 @@ static int __init parse_options(struct early_serial8250_device *device,
if (mmio || mmio32)
printk(KERN_INFO
- "Early serial console at MMIO%s 0x%llu (options '%s')\n",
+ "Early serial console at MMIO%s 0x%llx (options '%s')\n",
mmio32 ? "32" : "",
(unsigned long long)port->mapbase,
device->options);
else
printk(KERN_INFO
- "Early serial console at I/O port 0x%lu (options '%s')\n",
+ "Early serial console at I/O port 0x%lx (options '%s')\n",
port->iobase,
device->options);
--
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