Re: [PATCH 2/8] console: factorise function to get the console by name

2013-10-06 Thread Sascha Hauer
On Sun, Oct 06, 2013 at 08:38:56PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 13:24 Sun 06 Oct , Sascha Hauer wrote: > > On Thu, Oct 03, 2013 at 09:21:54AM +0200, Jean-Christophe PLAGNIOL-VILLARD > > wrote: > > > rename it to console_get_by_name > > > > > > Signed-off-by: Jean-Chris

Re: [PATCH 2/8] console: factorise function to get the console by name

2013-10-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 13:24 Sun 06 Oct , Sascha Hauer wrote: > On Thu, Oct 03, 2013 at 09:21:54AM +0200, Jean-Christophe PLAGNIOL-VILLARD > wrote: > > rename it to console_get_by_name > > > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > > --- > > +struct console_device *console_get_by_name(const char *cna

Re: [PATCH 2/8] console: factorise function to get the console by name

2013-10-06 Thread Sascha Hauer
On Thu, Oct 03, 2013 at 09:21:54AM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote: > rename it to console_get_by_name > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > --- > +struct console_device *console_get_by_name(const char *cname) > +{ > + struct console_device *cdev; > + const

[PATCH 2/8] console: factorise function to get the console by name

2013-10-03 Thread Jean-Christophe PLAGNIOL-VILLARD
rename it to console_get_by_name Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- commands/loadxy.c | 26 ++ common/console_common.c | 17 + include/console.h | 1 + 3 files changed, 20 insertions(+), 24 deletions(-) diff --git a/commands/