aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Fritiofson <andreas.fritiofson@gmail.com>2013-09-28 23:01:07 +0200
committerSpencer Oliver <spen@spen-soft.co.uk>2013-10-31 20:45:26 +0000
commit01298ca2c839965f54d6d6a7b8ac00fe77190116 (patch)
treefc8a0697e378b58270f043d865cc5154fd5f72fe /src
parent4935709484828f9ce6e12c31957c78c6c1019d3e (diff)
downloadriscv-openocd-01298ca2c839965f54d6d6a7b8ac00fe77190116.zip
riscv-openocd-01298ca2c839965f54d6d6a7b8ac00fe77190116.tar.gz
riscv-openocd-01298ca2c839965f54d6d6a7b8ac00fe77190116.tar.bz2
binarybuffer: Remove unnecessary cast and fix hidden "bug"
Because of the cast, the const decoration on the parameter provided no guarantee against modification since it was silently discarded. Change-Id: Ib83ade955e1a61ee2175c690620437b5e19cbb6a Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: http://openocd.zylin.com/1776 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
Diffstat (limited to 'src')
-rw-r--r--src/helper/binarybuffer.c4
-rw-r--r--src/helper/binarybuffer.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/src/helper/binarybuffer.c b/src/helper/binarybuffer.c
index 6fe3664..a3c993d 100644
--- a/src/helper/binarybuffer.c
+++ b/src/helper/binarybuffer.c
@@ -148,7 +148,7 @@ void *buf_set_buf(const void *_src, unsigned src_start,
if ((sq == 0) && (dq == 0) && (lq == 0)) {
for (i = 0; i < lb; i++)
*dst++ = *src++;
- return (uint8_t *)_dst;
+ return _dst;
}
/* fallback to slow bit copy */
@@ -167,7 +167,7 @@ void *buf_set_buf(const void *_src, unsigned src_start,
}
}
- return (uint8_t *)_dst;
+ return _dst;
}
uint32_t flip_u32(uint32_t value, unsigned int num)
diff --git a/src/helper/binarybuffer.h b/src/helper/binarybuffer.h
index 5b86c5f..9c20bcd 100644
--- a/src/helper/binarybuffer.h
+++ b/src/helper/binarybuffer.h
@@ -42,7 +42,7 @@
static inline void buf_set_u32(void *_buffer,
unsigned first, unsigned num, uint32_t value)
{
- uint8_t *buffer = (uint8_t *)_buffer;
+ uint8_t *buffer = _buffer;
if ((num == 32) && (first == 0)) {
buffer[3] = (value >> 24) & 0xff;
@@ -71,7 +71,7 @@ static inline void buf_set_u32(void *_buffer,
static inline void buf_set_u64(void *_buffer,
unsigned first, unsigned num, uint64_t value)
{
- uint8_t *buffer = (uint8_t *)_buffer;
+ uint8_t *buffer = _buffer;
if ((num == 32) && (first == 0)) {
buffer[3] = (value >> 24) & 0xff;
@@ -109,7 +109,7 @@ static inline void buf_set_u64(void *_buffer,
static inline uint32_t buf_get_u32(const void *_buffer,
unsigned first, unsigned num)
{
- uint8_t *buffer = (uint8_t *)_buffer;
+ const uint8_t *buffer = _buffer;
if ((num == 32) && (first == 0)) {
return (((uint32_t)buffer[3]) << 24) |
@@ -138,7 +138,7 @@ static inline uint32_t buf_get_u32(const void *_buffer,
static inline uint64_t buf_get_u64(const void *_buffer,
unsigned first, unsigned num)
{
- uint8_t *buffer = (uint8_t *)_buffer;
+ const uint8_t *buffer = _buffer;
if ((num == 32) && (first == 0)) {
return 0 + ((((uint32_t)buffer[3]) << 24) | /* Note - zero plus is to avoid a checkpatch bug */