Re: [PATCH 3/4] log: Add a way to enable/disable a log device

2020-10-11 Thread Tom Rini
On Sat, Sep 12, 2020 at 12:28:49PM -0600, Simon Glass wrote: > At present all log devices are enabled by default. Add a function to allow > devices to be disabled or enabled at runtime. > > Signed-off-by: Simon Glass Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP

Re: [PATCH 3/4] log: Add a way to enable/disable a log device

2020-09-12 Thread Simon Glass
Hi Heinrich, On Sat, 12 Sep 2020 at 14:25, Heinrich Schuchardt wrote: > > Am 12. September 2020 20:28:49 MESZ schrieb Simon Glass : > >At present all log devices are enabled by default. Add a function to > >allow > >devices to be disabled or enabled at runtime. > > Should this capability be

Re: [PATCH 3/4] log: Add a way to enable/disable a log device

2020-09-12 Thread Heinrich Schuchardt
Am 12. September 2020 20:28:49 MESZ schrieb Simon Glass : >At present all log devices are enabled by default. Add a function to >allow >devices to be disabled or enabled at runtime. Should this capability be added to the log command? Regards Heinrich > >Signed-off-by: Simon Glass >--- > >

[PATCH 3/4] log: Add a way to enable/disable a log device

2020-09-12 Thread Simon Glass
At present all log devices are enabled by default. Add a function to allow devices to be disabled or enabled at runtime. Signed-off-by: Simon Glass --- common/log.c | 38 ++ include/log.h | 17 + test/log/log_test.c