Browse Source

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.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
f7bd1e8f3a
4 changed files with 5 additions and 3 deletions
  1. +2
    -0
      src/flash/nand/nonce.c
  2. +1
    -1
      src/flash/nor/faux.c
  3. +1
    -1
      src/jtag/drivers/dummy.c
  4. +1
    -1
      src/target/testee.c

+ 2
- 0
src/flash/nand/nonce.c 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,


+ 1
- 1
src/flash/nor/faux.c View File

@@ -23,7 +23,7 @@

#include <flash/flash.h>
#include <target/image.h>
#include "../hello.h"
#include "hello.h"


struct faux_flash_bank


+ 1
- 1
src/jtag/drivers/dummy.c View File

@@ -23,7 +23,7 @@

#include <jtag/interface.h>
#include "bitbang.h"
#include "../hello.h"
#include "hello.h"


/* my private tap controller state, which tracks state for calling code */


+ 1
- 1
src/target/testee.c View File

@@ -23,7 +23,7 @@
#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[] = {
{


Loading…
Cancel
Save