This is an automated email from Gerrit. "zapb <d...@zapb.de>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/7468
-- gerrit commit 3407c15f1f2ef259977ef231665937b5688eb96b Author: Marc Schink <d...@zapb.de> Date: Mon Jan 30 16:38:45 2023 +0100 flash/nor/stm32l4x: Add revision 'Z' for STM32L552/562 devices Change-Id: Icc6058ef1f43e969a2a9baadfaf382ac820a7b76 Signed-off-by: Marc Schink <d...@zapb.de> diff --git a/src/flash/nor/stm32l4x.c b/src/flash/nor/stm32l4x.c index c67dbf75dc..02e737b87c 100644 --- a/src/flash/nor/stm32l4x.c +++ b/src/flash/nor/stm32l4x.c @@ -318,7 +318,7 @@ static const struct stm32l4_rev stm32l4p_l4qxx_revs[] = { }; static const struct stm32l4_rev stm32l55_l56xx_revs[] = { - { 0x1000, "A" }, { 0x2000, "B" }, + { 0x1000, "A" }, { 0x2000, "B" }, { 0x2001, "Z" }, }; static const struct stm32l4_rev stm32g49_g4axx_revs[] = { --