summaryrefslogtreecommitdiff
path: root/src/jtag/interfaces.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:14:31 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:22:52 -0800
commit165fb9309d16ff91967f26ce8c01bfd176371506 (patch)
treed48d31652964e1c84a36c93009b9c557d633f03a /src/jtag/interfaces.h
parentc9e448222cc5d1162f5e495cdfd327732c50a484 (diff)
downloadopenocd+libswd-165fb9309d16ff91967f26ce8c01bfd176371506.tar.gz
openocd+libswd-165fb9309d16ff91967f26ce8c01bfd176371506.tar.bz2
openocd+libswd-165fb9309d16ff91967f26ce8c01bfd176371506.tar.xz
openocd+libswd-165fb9309d16ff91967f26ce8c01bfd176371506.zip
change #include "interface.h" to <jtag/interface.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "interface.h" the following form should be used. #include <jtag/interface.h> The exception is from .c files in the same directory.
Diffstat (limited to 'src/jtag/interfaces.h')
-rw-r--r--src/jtag/interfaces.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/interfaces.h b/src/jtag/interfaces.h
index 38f1e714..018a3615 100644
--- a/src/jtag/interfaces.h
+++ b/src/jtag/interfaces.h
@@ -35,7 +35,7 @@
* for loading and unloading them dynamically from shared libraries.
*/
-#include "interface.h"
+#include <jtag/interface.h>
/// Dynamically load all JTAG interface modules from specified directory.
void jtag_interface_modules_load(const char *path);