Author: hailfinger Date: 2007-10-16 21:29:34 +0200 (Tue, 16 Oct 2007) New Revision: 507
Modified: LinuxBIOSv3/device/device_util.c Log: Add resource size and resource granularity reporting to device_util.c.
Signed-off-by: Carl-Daniel Hailfinger c-d.hailfinger.devel.2006@gmx.net Acked-by: Uwe Hermann uwe@hermann-uwe.de
Modified: LinuxBIOSv3/device/device_util.c =================================================================== --- LinuxBIOSv3/device/device_util.c 2007-10-16 18:59:36 UTC (rev 506) +++ LinuxBIOSv3/device/device_util.c 2007-10-16 19:29:34 UTC (rev 507) @@ -601,11 +601,11 @@ sprintf(buf, "bus %02x ", dev->link[0].secondary); #endif } - printk(BIOS_DEBUG, - "%s %02lx <- [0x%010llx - 0x%010llx] %s%s%s\n", - dev_path(dev), - resource->index, - base, end, buf, resource_type(resource), comment); + printk(BIOS_DEBUG, "%s %02lx <- [0x%010llx - 0x%010llx] " + "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); } }