From 52bc99367c270b88f758f3a19634640ae0553f91 Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Tue, 16 Oct 2007 18:21:22 +0000 Subject: Add resource size and resource granularity reporting to device_util.c. Signed-off-by: Carl-Daniel Hailfinger Acked-by: Uwe Hermann git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2862 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/devices/device_util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/devices') diff --git a/src/devices/device_util.c b/src/devices/device_util.c index 22206069d2..efb1f0f257 100644 --- a/src/devices/device_util.c +++ b/src/devices/device_util.c @@ -467,10 +467,11 @@ void report_resource_stored(device_t dev, struct resource *resource, const char #endif } printk_debug( - "%s %02x <- [0x%010Lx - 0x%010Lx] %s%s%s\n", + "%s %02x <- [0x%010Lx - 0x%010Lx] size 0x%08Lx gran 0x%02x %s%s%s\n", dev_path(dev), resource->index, base, end, + resource->size, resource->gran, buf, resource_type(resource), comment); -- cgit v1.2.3