stm32f1.c: Add missing fall through statement needed by GCC7.

This commit is contained in:
Uwe Bonnes 2017-12-18 13:55:55 +01:00
parent a3484e3d3b
commit 922f857de7
1 changed files with 1 additions and 0 deletions

View File

@ -140,6 +140,7 @@ bool stm32f1_probe(target *t)
case 0x422: /* STM32F30x */ case 0x422: /* STM32F30x */
case 0x446: /* STM32F303xD/E and STM32F398xE */ case 0x446: /* STM32F303xD/E and STM32F398xE */
target_add_ram(t, 0x10000000, 0x4000); target_add_ram(t, 0x10000000, 0x4000);
/* fall through */
case 0x432: /* STM32F37x */ case 0x432: /* STM32F37x */
case 0x439: /* STM32F302C8 */ case 0x439: /* STM32F302C8 */
t->driver = "STM32F3"; t->driver = "STM32F3";