drivers/flash/flash_stm32g4x: fixed build issue

This driver file couldn't be compiled due the syntax error.

Signed-off-by: Andrzej Puzdrowski <andrzej.puzdrowski@nordicsemi.no>
This commit is contained in:
Andrzej Puzdrowski 2021-03-29 15:31:20 +02:00 committed by Anas Nashif
commit 6acc4a2521

View file

@ -197,7 +197,7 @@ int flash_stm32_block_erase_loop(const struct device *dev,
unsigned int offset,
unsigned int len)
{
unsigned int address = offset
unsigned int address = offset;
int rc = 0;
for (; address <= offset + len - 1 ; address += FLASH_PAGE_SIZE) {