X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fflash%2Fnor%2Ffaux.c;h=1fd1da216b684890afc86d6f458459e4a5e2bc75;hb=03f46e368830c7293f83186658268a6cd4557b20;hp=8e51b8e55ca261f7431871fc5956692ac144318c;hpb=08d4411b59dd8bd0e7d8009003b71d23acbf6eee;p=openocd.git diff --git a/src/flash/nor/faux.c b/src/flash/nor/faux.c index 8e51b8e55c..1fd1da216b 100644 --- a/src/flash/nor/faux.c +++ b/src/flash/nor/faux.c @@ -93,7 +93,7 @@ static int faux_protect(struct flash_bank *bank, int set, int first, int last) return ERROR_OK; } -static int faux_write(struct flash_bank *bank, uint8_t *buffer, uint32_t offset, uint32_t count) +static int faux_write(struct flash_bank *bank, const uint8_t *buffer, uint32_t offset, uint32_t count) { struct faux_flash_bank *info = bank->driver_priv; memcpy(info->memory + offset, buffer, count);