summaryrefslogtreecommitdiff
path: root/src/jtag
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:14:25 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:22:48 -0800
commit264d24495d7ff0048bd5c49736042ed66b90f7a6 (patch)
tree572e169598fa3dfa7c898749917aa90e9d5e1e68 /src/jtag
parentd1bc4375e99ce52b72988494f35beca364234bae (diff)
downloadopenocd+libswd-264d24495d7ff0048bd5c49736042ed66b90f7a6.tar.gz
openocd+libswd-264d24495d7ff0048bd5c49736042ed66b90f7a6.tar.bz2
openocd+libswd-264d24495d7ff0048bd5c49736042ed66b90f7a6.tar.xz
openocd+libswd-264d24495d7ff0048bd5c49736042ed66b90f7a6.zip
change #include "command.h" to <helper/command.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "command.h" the following form should be used. #include <helper/command.h> The exception is from .c files in the same directory.
Diffstat (limited to 'src/jtag')
-rw-r--r--src/jtag/drivers/driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/drivers/driver.c b/src/jtag/drivers/driver.c
index cadd88e8..f6fb4b60 100644
--- a/src/jtag/drivers/driver.c
+++ b/src/jtag/drivers/driver.c
@@ -33,7 +33,7 @@
#include "interface.h"
#include "minidriver.h"
-#include "command.h"
+#include <helper/command.h>
struct jtag_callback_entry
{