aboutsummaryrefslogtreecommitdiff
path: root/src/devices
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/device_util.c3
1 files changed, 2 insertions, 1 deletions
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);