FLASH/STMSMI: fix clang "dead store" warning
Change-Id: Icfdefdc48432db2057d3fea19dc424571d2385eb Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/50 Tested-by: jenkins Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>
This commit is contained in:
parent
8d5e34635c
commit
811f7d3f7e
|
@ -714,20 +714,17 @@ static int stmsmi_protect_check(struct flash_bank *bank)
|
|||
static int get_stmsmi_info(struct flash_bank *bank, char *buf, int buf_size)
|
||||
{
|
||||
struct stmsmi_flash_bank *stmsmi_info = bank->driver_priv;
|
||||
int printed;
|
||||
|
||||
if (!(stmsmi_info->probed))
|
||||
{
|
||||
printed = snprintf(buf, buf_size,
|
||||
snprintf(buf, buf_size,
|
||||
"\nSMI flash bank not probed yet\n");
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
printed = snprintf(buf, buf_size, "\nSMI flash information:\n"
|
||||
snprintf(buf, buf_size, "\nSMI flash information:\n"
|
||||
" Device \'%s\' (ID 0x%08x)\n",
|
||||
stmsmi_info->dev->name, stmsmi_info->dev->device_id);
|
||||
buf += printed;
|
||||
buf_size -= printed;
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue