diff --git a/src/flash/nand/nonce.c b/src/flash/nand/nonce.c index f4411640a..8d15040ff 100644 --- a/src/flash/nand/nonce.c +++ b/src/flash/nand/nonce.c @@ -21,6 +21,7 @@ #include "config.h" #endif #include +#include "hello.h" static int nonce_nand_command(struct nand_device *nand, uint8_t command) @@ -68,6 +69,7 @@ static int nonce_nand_init(struct nand_device *nand) struct nand_flash_controller nonce_nand_controller = { .name = "nonce", + .commands = hello_command_handlers, .nand_device_command = &nonce_nand_device_command, .init = &nonce_nand_init, .reset = &nonce_nand_reset, diff --git a/src/flash/nor/faux.c b/src/flash/nor/faux.c index 49a0f722b..c996522c5 100644 --- a/src/flash/nor/faux.c +++ b/src/flash/nor/faux.c @@ -23,7 +23,7 @@ #include #include -#include "../hello.h" +#include "hello.h" struct faux_flash_bank diff --git a/src/jtag/drivers/dummy.c b/src/jtag/drivers/dummy.c index 7370c81dc..1880712a8 100644 --- a/src/jtag/drivers/dummy.c +++ b/src/jtag/drivers/dummy.c @@ -23,7 +23,7 @@ #include #include "bitbang.h" -#include "../hello.h" +#include "hello.h" /* my private tap controller state, which tracks state for calling code */ diff --git a/src/target/testee.c b/src/target/testee.c index 45273887b..991c64e85 100644 --- a/src/target/testee.c +++ b/src/target/testee.c @@ -23,7 +23,7 @@ #include "target.h" #include "target_type.h" #include -#include "../hello.h" +#include "hello.h" static const struct command_registration testee_command_handlers[] = { {