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.
This commit is contained in:
Zachary T Welch 2009-12-03 04:14:32 -08:00
parent cb4a475f6c
commit 2641fd9576
3 changed files with 3 additions and 3 deletions

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

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 =

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"