forked from auracaster/openocd
flash/nor: move variable's declaration in C file
Variables should not be declared in the include file, otherwise multiple include will cause multiple instances. Move the declaration in the C file and make it static. Change-Id: I8b4884cba643a792a78df4e123aa324b19d92279 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7172 Reviewed-by: Tomas Vanek <vanekt@fbl.cz> Tested-by: jenkins
This commit is contained in:
@@ -45,6 +45,21 @@ struct msp432_bank {
|
||||
struct armv7m_algorithm armv7m_info;
|
||||
};
|
||||
|
||||
/* Flash helper algorithm for MSP432P401x targets */
|
||||
static const uint8_t msp432p401x_algo[] = {
|
||||
#include "../../../contrib/loaders/flash/msp432/msp432p401x_algo.inc"
|
||||
};
|
||||
|
||||
/* Flash helper algorithm for MSP432P411x targets */
|
||||
static const uint8_t msp432p411x_algo[] = {
|
||||
#include "../../../contrib/loaders/flash/msp432/msp432p411x_algo.inc"
|
||||
};
|
||||
|
||||
/* Flash helper algorithm for MSP432E4x targets */
|
||||
static const uint8_t msp432e4x_algo[] = {
|
||||
#include "../../../contrib/loaders/flash/msp432/msp432e4x_algo.inc"
|
||||
};
|
||||
|
||||
static int msp432_auto_probe(struct flash_bank *bank);
|
||||
|
||||
static int msp432_device_type(uint32_t family_type, uint32_t device_id,
|
||||
|
||||
Reference in New Issue
Block a user