From 9c298cd27874c77bd9f5aa84c0380349f002cffa Mon Sep 17 00:00:00 2001 From: Spencer Oliver Date: Mon, 8 Jul 2013 17:18:54 +0100 Subject: [PATCH] flash: add missing stm32l medium+ device id The device was correctly used in stm32lx_probe but missing from stm32lx_get_info. Change-Id: If288b8df3210a945e727e4e27cfbdb948db32fc7 Signed-off-by: Spencer Oliver Reviewed-on: http://openocd.zylin.com/1491 Reviewed-by: Andreas Fritiofson Tested-by: jenkins --- src/flash/nor/stm32lx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/flash/nor/stm32lx.c b/src/flash/nor/stm32lx.c index 0a4e5f84d8..7093fa4cbb 100644 --- a/src/flash/nor/stm32lx.c +++ b/src/flash/nor/stm32lx.c @@ -739,7 +739,8 @@ static int stm32lx_get_info(struct flash_bank *bank, char *buf, int buf_size) snprintf(buf, buf_size, "unknown"); break; } - } else if ((device_id & 0xfff) == 0x436) { + } else if (((device_id & 0xfff) == 0x436) || + ((device_id & 0xfff) == 0x427)) { printed = snprintf(buf, buf_size, "stm32lx (HD) - Rev: "); buf += printed; buf_size -= printed; -- 2.30.2