This is an automated email from Gerrit. Jiri Kastner ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/6149
-- gerrit commit fcebc97425732764c9f7358b6be2ce858fff9cee Author: James Murray <[email protected]> Date: Tue Apr 6 20:04:30 2021 +0200 flash: nor: enable mpx5xxx flash drivers enable mpc56xx and mpc57xx drivers Change-Id: I42997e3eb457756fc47a8fa59642c5c5e3cc1a91 Signed-off-by: Jiri Kastner <[email protected]> diff --git a/src/flash/nor/Makefile.am b/src/flash/nor/Makefile.am index 8c9b2b7..6fff0c3 100644 --- a/src/flash/nor/Makefile.am +++ b/src/flash/nor/Makefile.am @@ -40,8 +40,10 @@ NOR_DRIVERS = \ %D%/lpcspifi.c \ %D%/max32xxx.c \ %D%/mdr.c \ - %D%/msp432.c \ + %D%/mpc56xx.c \ + %D%/mpc57xx.c \ %D%/mrvlqspi.c \ + %D%/msp432.c \ %D%/niietcm4.c \ %D%/non_cfi.c \ %D%/nrf5.c \ diff --git a/src/flash/nor/drivers.c b/src/flash/nor/drivers.c index 570861e..226dd0f 100644 --- a/src/flash/nor/drivers.c +++ b/src/flash/nor/drivers.c @@ -53,6 +53,8 @@ extern const struct flash_driver lpc2900_flash; extern const struct flash_driver lpcspifi_flash; extern const struct flash_driver max32xxx_flash; extern const struct flash_driver mdr_flash; +extern const struct flash_driver mpc56xx_flash; +extern const struct flash_driver mpc57xx_flash; extern const struct flash_driver mrvlqspi_flash; extern const struct flash_driver msp432_flash; extern const struct flash_driver niietcm4_flash; @@ -126,6 +128,8 @@ static const struct flash_driver * const flash_drivers[] = { &lpcspifi_flash, &max32xxx_flash, &mdr_flash, + &mpc56xx_flash, + &mpc57xx_flash, &mrvlqspi_flash, &msp432_flash, &niietcm4_flash, --
