Before we can -I the top-level src/ directory alone, references to
"hello.h" must be updated. This is an internal header, so it does
not need angle brackets.
#include "config.h"
#endif
#include <flash/nand.h>
+#include "hello.h"
static int nonce_nand_command(struct nand_device *nand, uint8_t command)
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,
#include <flash/flash.h>
#include <target/image.h>
-#include "../hello.h"
+#include "hello.h"
struct faux_flash_bank
#include <jtag/interface.h>
#include "bitbang.h"
-#include "../hello.h"
+#include "hello.h"
/* my private tap controller state, which tracks state for calling code */
#include "target.h"
#include "target_type.h"
#include <helper/log.h>
-#include "../hello.h"
+#include "hello.h"
static const struct command_registration testee_command_handlers[] = {
{