Browse Source

change #include "minidriver.h" to <jtag/minidriver.h>

Changes from the flat namespace to heirarchical one.  Instead of writing:

	#include "minidriver.h"

the following form should be used.

	#include <jtag/minidriver.h>

The exception is from .c files in the same directory.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
2641fd9576
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      src/jtag/drivers/driver.c
  2. +1
    -1
      src/jtag/minidummy/minidummy.c
  3. +1
    -1
      src/jtag/zy1000/zy1000.c

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

@@ -32,7 +32,7 @@
#endif

#include <jtag/interface.h>
#include "minidriver.h"
#include <jtag/minidriver.h>
#include <helper/command.h>

struct jtag_callback_entry


+ 1
- 1
src/jtag/minidummy/minidummy.c View File

@@ -21,7 +21,7 @@
#endif

#include "embeddedice.h"
#include "minidriver.h"
#include <jtag/minidriver.h>
#include <jtag/interface.h>

struct jtag_interface minidummy_interface =


+ 1
- 1
src/jtag/zy1000/zy1000.c View File

@@ -21,7 +21,7 @@
#endif

#include "embeddedice.h"
#include "minidriver.h"
#include <jtag/minidriver.h>
#include <jtag/interface.h>
#include "zy1000_version.h"



Loading…
Cancel
Save