From f7bd1e8f3a302378687ded559e865c258d441c89 Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Thu, 3 Dec 2009 03:46:15 -0800 Subject: change #include "../hello.h" to "hello.h" 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. --- src/flash/nand/nonce.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/flash/nand') diff --git a/src/flash/nand/nonce.c b/src/flash/nand/nonce.c index f4411640..8d15040f 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, -- cgit v1.2.3