From: OpenOCD-Gerrit <ope...@us...> - 2022-05-21 09:01:22
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 631d0bddfaadac63a7d8ff3ef916614d62c86b1e (commit) from 0f11f951e7774c54953f3f06916dcb62ac9b086d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 631d0bddfaadac63a7d8ff3ef916614d62c86b1e Author: Erhan Kurubas <erh...@es...> Date: Mon May 9 23:01:35 2022 +0200 flash: fix clang static analyzer build errors Fixes "variable set but not used" errors. Tested with Homebrew clang version 13.0.1 Signed-off-by: Erhan Kurubas <erh...@es...> Change-Id: Ia90baf5b4857db2b5569ebe6adbbb832de772aad Reviewed-on: https://review.openocd.org/c/openocd/+/6971 Tested-by: jenkins Reviewed-by: Antonio Borneo <bor...@gm...> diff --git a/src/flash/nand/davinci.c b/src/flash/nand/davinci.c index 84f8e3480..1aa7ffc05 100644 --- a/src/flash/nand/davinci.c +++ b/src/flash/nand/davinci.c @@ -605,8 +605,6 @@ static int davinci_write_page_ecc4infix(struct nand_device *nand, uint32_t page, /* write this "out-of-band" data -- infix */ davinci_write_block_data(nand, oob, 16); oob += 16; - oob_size -= 16; - } while (data_size); /* the last data and OOB writes included the spare area */ diff --git a/src/flash/nor/dsp5680xx_flash.c b/src/flash/nor/dsp5680xx_flash.c index 5e8eec30f..858b66981 100644 --- a/src/flash/nor/dsp5680xx_flash.c +++ b/src/flash/nor/dsp5680xx_flash.c @@ -45,14 +45,11 @@ static int dsp5680xx_build_sector_list(struct flash_bank *bank) { - uint32_t offset = HFM_FLASH_BASE_ADDR; - bank->sectors = malloc(sizeof(struct flash_sector) * bank->num_sectors); for (unsigned int i = 0; i < bank->num_sectors; ++i) { bank->sectors[i].offset = i * HFM_SECTOR_SIZE; bank->sectors[i].size = HFM_SECTOR_SIZE; - offset += bank->sectors[i].size; bank->sectors[i].is_erased = -1; bank->sectors[i].is_protected = -1; } ----------------------------------------------------------------------- Summary of changes: src/flash/nand/davinci.c | 2 -- src/flash/nor/dsp5680xx_flash.c | 3 --- 2 files changed, 5 deletions(-) hooks/post-receive -- Main OpenOCD repository |