[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v1 1/1] xen/arm: Remove warning for platforms without platform specific code
From: "Edgar E. Iglesias" <edgar.iglesias@xxxxxxxxxx> Replace the warning with an info message stating that the platform is generic. Suggested-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xxxxxxxxxx> --- xen/arch/arm/platform.c | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/xen/arch/arm/platform.c b/xen/arch/arm/platform.c index 86daf2b..70c1388 100644 --- a/xen/arch/arm/platform.c +++ b/xen/arch/arm/platform.c @@ -44,17 +44,6 @@ static bool_t __init platform_is_compatible(const struct platform_desc *plat) return 0; } -/* List of possible platform */ -static void dump_platform_table(void) -{ - const struct platform_desc *p; - - printk("Available platform support:\n"); - - for ( p = _splatform; p != _eplatform; p++ ) - printk(" - %s\n", p->name); -} - void __init platform_init(void) { int res = 0; @@ -72,9 +61,7 @@ void __init platform_init(void) if ( platform == _eplatform ) { /* TODO: dump DT machine compatible node */ - printk(XENLOG_WARNING "WARNING: Unrecognized/unsupported device tree " - "compatible list\n"); - dump_platform_table(); + printk(XENLOG_INFO "Platform: Generic System\n"); platform = NULL; } else -- 1.9.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |