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.
This commit is contained in:
Zachary T Welch
2009-12-03 03:46:15 -08:00
parent 12499f97fd
commit f7bd1e8f3a
4 changed files with 5 additions and 3 deletions

View File

@@ -21,6 +21,7 @@
#include "config.h"
#endif
#include <flash/nand.h>
#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,