Re: [U-Boot] [PATCH 073/126] trace: Remove the const from write functions

2019-10-11 Thread Bin Meng
On Thu, Oct 10, 2019 at 11:20 AM Bin Meng wrote: > > On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote: > > > > The write functions do actually change the contents of memory so it is not > > correct to use 'const'. Remove it. > > > > Signed-off-by: Simon Glass > > --- > > > > common/iotrace.c

Re: [U-Boot] [PATCH 073/126] trace: Remove the const from write functions

2019-10-09 Thread Bin Meng
On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote: > > The write functions do actually change the contents of memory so it is not > correct to use 'const'. Remove it. > > Signed-off-by: Simon Glass > --- > > common/iotrace.c | 6 +++--- > include/iotrace.h | 13 ++--- > 2 files

[U-Boot] [PATCH 073/126] trace: Remove the const from write functions

2019-09-25 Thread Simon Glass
The write functions do actually change the contents of memory so it is not correct to use 'const'. Remove it. Signed-off-by: Simon Glass --- common/iotrace.c | 6 +++--- include/iotrace.h | 13 ++--- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/common/iotrace.c