diff options
author | Simon Glass | 2019-09-25 08:56:57 -0600 |
---|---|---|
committer | Bin Meng | 2019-10-11 17:37:19 +0800 |
commit | 9859dc76e784fb35e99a7c521a3bb2bfe2e6bc38 (patch) | |
tree | efd53f38bc822e3f68a688b86ce0f88198f9940b /common | |
parent | 6498fda140f526f82f87e057afb61ca23904770f (diff) |
trace: Remove the const from write functions
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 <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/iotrace.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/iotrace.c b/common/iotrace.c index 49bee3c92a0..5b92fabc76e 100644 --- a/common/iotrace.c +++ b/common/iotrace.c @@ -86,7 +86,7 @@ u32 iotrace_readl(const void *ptr) return v; } -void iotrace_writel(ulong value, const void *ptr) +void iotrace_writel(ulong value, void *ptr) { add_record(IOT_32 | IOT_WRITE, ptr, value); writel(value, ptr); @@ -102,7 +102,7 @@ u16 iotrace_readw(const void *ptr) return v; } -void iotrace_writew(ulong value, const void *ptr) +void iotrace_writew(ulong value, void *ptr) { add_record(IOT_16 | IOT_WRITE, ptr, value); writew(value, ptr); @@ -118,7 +118,7 @@ u8 iotrace_readb(const void *ptr) return v; } -void iotrace_writeb(ulong value, const void *ptr) +void iotrace_writeb(ulong value, void *ptr) { add_record(IOT_8 | IOT_WRITE, ptr, value); writeb(value, ptr); |