summaryrefslogtreecommitdiff
path: root/src/jtag
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:14:29 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:22:52 -0800
commit6512e5e36b067ae458cb7f6a9fdfb08d38da3583 (patch)
tree49490993e98f16d33efd05296e76f603bf50c747 /src/jtag
parentba00ba47d289381d1fbfb84b6f4b18f8dff2f011 (diff)
downloadopenocd+libswd-6512e5e36b067ae458cb7f6a9fdfb08d38da3583.tar.gz
openocd+libswd-6512e5e36b067ae458cb7f6a9fdfb08d38da3583.tar.bz2
openocd+libswd-6512e5e36b067ae458cb7f6a9fdfb08d38da3583.tar.xz
openocd+libswd-6512e5e36b067ae458cb7f6a9fdfb08d38da3583.zip
change #include "time_support.h" to <helper/time_support.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "time_support.h" the following form should be used. #include <helper/time_support.h> The exception is from .c files in the same directory.
Diffstat (limited to 'src/jtag')
-rw-r--r--src/jtag/drivers/ft2232.c2
-rw-r--r--src/jtag/drivers/presto.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/jtag/drivers/ft2232.c b/src/jtag/drivers/ft2232.c
index 29b6389c..30695a9a 100644
--- a/src/jtag/drivers/ft2232.c
+++ b/src/jtag/drivers/ft2232.c
@@ -43,7 +43,7 @@
/* project specific includes */
#include "interface.h"
#include "commands.h"
-#include "time_support.h"
+#include <helper/time_support.h>
#if IS_CYGWIN == 1
#include <windows.h>
diff --git a/src/jtag/drivers/presto.c b/src/jtag/drivers/presto.c
index f4e689c2..e00bac71 100644
--- a/src/jtag/drivers/presto.c
+++ b/src/jtag/drivers/presto.c
@@ -26,7 +26,7 @@
#endif
#include "interface.h"
-#include "time_support.h"
+#include <helper/time_support.h>
#include "bitq.h"