[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] xen/dts: specific bad cell count error
From: Tsahee Zidenberg <tsahee@xxxxxxx> Specify in the error message if bad cell count is in device or parent. Signed-off-by: Tsahee Zidenberg <tsahee@xxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- xen/common/device_tree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/common/device_tree.c b/xen/common/device_tree.c index 9b9a348..327b33c 100644 --- a/xen/common/device_tree.c +++ b/xen/common/device_tree.c @@ -1015,7 +1015,7 @@ static u64 __dt_translate_address(const struct dt_device_node *dev, bus->count_cells(dev, &na, &ns); if ( !DT_CHECK_COUNTS(na, ns) ) { - dt_printk(XENLOG_ERR "dt_parse: Bad cell count for %s\n", + dt_printk(XENLOG_ERR "dt_parse: Bad cell count for device %s\n", dev->full_name); goto bail; } @@ -1050,7 +1050,7 @@ static u64 __dt_translate_address(const struct dt_device_node *dev, pbus->count_cells(dev, &pna, &pns); if ( !DT_CHECK_COUNTS(pna, pns) ) { - printk(XENLOG_ERR "dt_parse: Bad cell count for %s\n", + printk(XENLOG_ERR "dt_parse: Bad cell count for parent %s\n", dev->full_name); break; } -- 1.8.1.2 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |