aboutsummaryrefslogtreecommitdiff
path: root/src/flash/nor/str9x.c
diff options
context:
space:
mode:
authorMathias K <kesmtp@freenet.de>2012-01-10 23:21:30 +0100
committerSpencer Oliver <spen@spen-soft.co.uk>2012-01-12 20:41:51 +0000
commitafe95871c59f05d532529af84e1ee80e3845e923 (patch)
treeec7715282d3c5fb5f261a2b4993a8b58332788dc /src/flash/nor/str9x.c
parent5f83378a9ca788e8a27e298b9e2b8969c944988b (diff)
downloadriscv-openocd-afe95871c59f05d532529af84e1ee80e3845e923.zip
riscv-openocd-afe95871c59f05d532529af84e1ee80e3845e923.tar.gz
riscv-openocd-afe95871c59f05d532529af84e1ee80e3845e923.tar.bz2
optimize: replace while loop by memcpy
There is no need to use a while loop here. This patch simple copy the last bytes with the system function. Change-Id: Ibda72dca449746efeba5a1af2e45c5990f9cf347 Signed-off-by: Mathias K <kesmtp@freenet.de> Reviewed-on: http://openocd.zylin.com/364 Tested-by: jenkins Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com> Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
Diffstat (limited to 'src/flash/nor/str9x.c')
-rw-r--r--src/flash/nor/str9x.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/flash/nor/str9x.c b/src/flash/nor/str9x.c
index 5bea206..674522c 100644
--- a/src/flash/nor/str9x.c
+++ b/src/flash/nor/str9x.c
@@ -618,14 +618,9 @@ static int str9x_write(struct flash_bank *bank,
if (bytes_remaining)
{
uint8_t last_halfword[2] = {0xff, 0xff};
- i = 0;
- while (bytes_remaining > 0)
- {
- last_halfword[i++] = *(buffer + bytes_written);
- bytes_remaining--;
- bytes_written++;
- }
+ /* copy the last remaining bytes into the write buffer */
+ memcpy(last_halfword, buffer+bytes_written, bytes_remaining);
bank_adr = address & ~0x03;