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:
parent
cb4a475f6c
commit
2641fd9576
|
@ -32,7 +32,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <jtag/interface.h>
|
#include <jtag/interface.h>
|
||||||
#include "minidriver.h"
|
#include <jtag/minidriver.h>
|
||||||
#include <helper/command.h>
|
#include <helper/command.h>
|
||||||
|
|
||||||
struct jtag_callback_entry
|
struct jtag_callback_entry
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "embeddedice.h"
|
#include "embeddedice.h"
|
||||||
#include "minidriver.h"
|
#include <jtag/minidriver.h>
|
||||||
#include <jtag/interface.h>
|
#include <jtag/interface.h>
|
||||||
|
|
||||||
struct jtag_interface minidummy_interface =
|
struct jtag_interface minidummy_interface =
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "embeddedice.h"
|
#include "embeddedice.h"
|
||||||
#include "minidriver.h"
|
#include <jtag/minidriver.h>
|
||||||
#include <jtag/interface.h>
|
#include <jtag/interface.h>
|
||||||
#include "zy1000_version.h"
|
#include "zy1000_version.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue