[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] dt-uart: Clarify log messages at init time.
commit 7c9fb01e02a25fe683d99e6ec244349c5053ec03 Author: Ian Campbell <ian.campbell@xxxxxxxxxx> AuthorDate: Thu Jan 8 11:53:54 2015 +0000 Commit: Ian Campbell <ian.campbell@xxxxxxxxxx> CommitDate: Mon Jan 12 16:04:23 2015 +0000 dt-uart: Clarify log messages at init time. - Don't log at all if console=dtuart (the default) was not present, in that case the user has asked for something else, no need for every other driver to tell them this. - Use "dtuart" in all other messages, rather than just "console" or "uart". - Be more explicit if we are exiting because dtuart= wasn't given. - Log the options which we've parsed. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Reviewed-by: Julien Grall <julien.grall@xxxxxxxxxx> --- xen/drivers/char/dt-uart.c | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/xen/drivers/char/dt-uart.c b/xen/drivers/char/dt-uart.c index 45a87a6..04dbb97 100644 --- a/xen/drivers/char/dt-uart.c +++ b/xen/drivers/char/dt-uart.c @@ -41,9 +41,12 @@ void __init dt_uart_init(void) const char *devpath = opt_dtuart; char *options; - if ( !console_has("dtuart") || !strcmp(opt_dtuart, "") ) + if ( !console_has("dtuart") ) + return; /* Not for us */ + + if ( !strcmp(opt_dtuart, "") ) { - printk("No console\n"); + printk("No dtuart path configured\n"); return; } @@ -53,7 +56,7 @@ void __init dt_uart_init(void) else options = ""; - printk("Looking for UART console %s\n", devpath); + printk("Looking for dtuart at \"%s\", options \"%s\"\n", devpath, options); if ( *devpath == '/' ) dev = dt_find_node_by_path(devpath); else @@ -68,7 +71,7 @@ void __init dt_uart_init(void) ret = device_init(dev, DEVICE_SERIAL, options); if ( ret ) - printk("Unable to initialize serial: %d\n", ret); + printk("Unable to initialize dtuart: %d\n", ret); } /* -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |