flash/nor/max32xxx: fix path of include file
The relative path should have three times '..'. Issue identified by doxygen: src/flash/nor/max32xxx.c:85: warning: include file ../../contrib/loaders/flash/max32xxx/max32xxx.inc not found, perhaps you forgot to add its directory to INCLUDE_PATH? Change-Id: Ie7b4948c6770b8acb9eff26e08eea32945ebb219 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5997 Tested-by: jenkins
This commit is contained in:
parent
f83c2b0c7c
commit
a16e8ba455
|
@ -82,7 +82,7 @@ struct max32xxx_flash_bank {
|
|||
|
||||
/* see contrib/loaders/flash/max32xxx/max32xxx.s for src */
|
||||
static const uint8_t write_code[] = {
|
||||
#include "../../contrib/loaders/flash/max32xxx/max32xxx.inc"
|
||||
#include "../../../contrib/loaders/flash/max32xxx/max32xxx.inc"
|
||||
};
|
||||
|
||||
/* Config Command: flash bank name driver base size chip_width bus_width target [driver_option]
|
||||
|
|
Loading…
Reference in New Issue