X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fflash%2Fnor%2Fstm32f2x.c;fp=src%2Fflash%2Fnor%2Fstm32f2xxx.c;h=c2f586a7a8983fe47bdbe5670c8ea37bbe583a2d;hp=df50e84b0b1c2e685b6e242e18484cee80e4c486;hb=b066a7db2498eadcdeb55ea763d805c75fbbd00b;hpb=b5a324e63c066b97c148c72ecec2e0dfc6023c70 diff --git a/src/flash/nor/stm32f2xxx.c b/src/flash/nor/stm32f2x.c similarity index 97% rename from src/flash/nor/stm32f2xxx.c rename to src/flash/nor/stm32f2x.c index df50e84b0b..c2f586a7a8 100644 --- a/src/flash/nor/stm32f2xxx.c +++ b/src/flash/nor/stm32f2x.c @@ -48,8 +48,7 @@ * */ - -/* Danger!!!! The STM32F1xxxx and STM32F2xxxx series actually have +/* Danger!!!! The STM32F1x and STM32F2x series actually have * quite different flash controllers. * * What's more scary is that the names of the registers and their @@ -57,7 +56,7 @@ * can be very different. * * To reduce testing complexity and dangers of regressions, - * a seperate file is used for stm32fx2222. + * a seperate file is used for stm32fx2x. * * 1mByte part with 4 x 16, 1 x 64, 7 x 128kBytes sectors * @@ -73,16 +72,16 @@ * PM0059 * www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/PROGRAMMING_MANUAL/CD00233952.pdf * - * STM32F1xxx series - notice that this code was copy, pasted and knocked - * into a stm32f2xxx driver, so in case something has been converted or + * STM32F1x series - notice that this code was copy, pasted and knocked + * into a stm32f2x driver, so in case something has been converted or * bugs haven't been fixed, here are the original manuals: * * RM0008 - Reference manual * * RM0042, the Flash programming manual for low-, medium- high-density and - * connectivity line STM32F10xxx devices + * connectivity line STM32F10x devices * - * PM0068, the Flash programming manual for XL-density STM32F10xxx devices. + * PM0068, the Flash programming manual for XL-density STM32F10x devices. * */ @@ -683,16 +682,16 @@ static const struct command_registration stm32x_exec_command_handlers[] = { static const struct command_registration stm32x_command_handlers[] = { { - .name = "stm32f2xxx", + .name = "stm32f2x", .mode = COMMAND_ANY, - .help = "stm32f2xxx flash command group", + .help = "stm32f2x flash command group", .chain = stm32x_exec_command_handlers, }, COMMAND_REGISTRATION_DONE }; -struct flash_driver stm32xf2xxx_flash = { - .name = "stm32f2xxx", +struct flash_driver stm32f2x_flash = { + .name = "stm32f2x", .commands = stm32x_command_handlers, .flash_bank_command = stm32x_flash_bank_command, .erase = stm32x_erase,