flash/nor/rsl10: drop unused `rsl10_info` in `rsl10_protect_check()`
`struct rsl10_info *chip` is only used in `rsl10_protect_check()` in an assertion triggerring `-Wunused-variable` when compiled with `DNDEBUG`. Drop it. Change-Id: Ib302aea742131479f04f32e8fe8a88a3230ae203 Signed-off-by: Evgeniy Naydanov <evgeniy.naydanov@syntacore.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8755 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
This commit is contained in:
parent
583506730d
commit
0d7d178ed4
|
@ -155,11 +155,6 @@ static int rsl10_get_probed_chip_if_halted(struct flash_bank *bank, struct rsl10
|
||||||
|
|
||||||
static int rsl10_protect_check(struct flash_bank *bank)
|
static int rsl10_protect_check(struct flash_bank *bank)
|
||||||
{
|
{
|
||||||
struct rsl10_bank *nbank = bank->driver_priv;
|
|
||||||
struct rsl10_info *chip = nbank->chip;
|
|
||||||
|
|
||||||
assert(chip);
|
|
||||||
|
|
||||||
uint32_t status;
|
uint32_t status;
|
||||||
|
|
||||||
int retval = target_read_u32(bank->target, RSL10_FLASH_REG_IF_STATUS, &status);
|
int retval = target_read_u32(bank->target, RSL10_FLASH_REG_IF_STATUS, &status);
|
||||||
|
|
Loading…
Reference in New Issue