From: Edgar E. Iglesias Date: Mon, 9 Mar 2015 05:23:23 +0000 (+1000) Subject: xen/arm: Remove warning for platforms without platform specific code X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=e1eb56fb6bbc6cc466338fe86f01d95fc73e124f;p=people%2Fgdunlap%2Fxen.git xen/arm: Remove warning for platforms without platform specific code Replace the warning with an info message stating that the platform is generic. Suggested-by: Ian Campbell Signed-off-by: Edgar E. Iglesias Reviewed-by: Julien Grall Acked-by: Ian Campbell --- diff --git a/xen/arch/arm/platform.c b/xen/arch/arm/platform.c index 86daf2bf6c..70c1388f9e 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