Re: [PATCH v3 2/9] console: Keep ->start() and ->stop() balanced

2021-01-16 Thread Tom Rini
On Mon, Dec 21, 2020 at 02:30:01PM +0200, Andy Shevchenko wrote: > There is no need to call ->start() for already started device. All the same, > there is no need to call ->stop() for devices still in use. > > For now enforce this only for IOMUX case. > > Cc: Simon Glass > Signed-off-by: Andy S

Re: [PATCH v3 2/9] console: Keep ->start() and ->stop() balanced

2020-12-21 Thread Simon Glass
On Mon, 21 Dec 2020 at 05:30, Andy Shevchenko wrote: > > There is no need to call ->start() for already started device. All the same, > there is no need to call ->stop() for devices still in use. > > For now enforce this only for IOMUX case. > > Cc: Simon Glass > Signed-off-by: Andy Shevchenko >

[PATCH v3 2/9] console: Keep ->start() and ->stop() balanced

2020-12-21 Thread Andy Shevchenko
There is no need to call ->start() for already started device. All the same, there is no need to call ->stop() for devices still in use. For now enforce this only for IOMUX case. Cc: Simon Glass Signed-off-by: Andy Shevchenko --- v3: renamed new function and added a documentation for it common