change #include "interface.h" to <jtag/interface.h>
authorZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:14:31 +0000 (04:14 -0800)
committerZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:22:52 +0000 (04:22 -0800)
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.

19 files changed:
src/jtag/drivers/amt_jtagaccel.c
src/jtag/drivers/arm-jtag-ew.c
src/jtag/drivers/at91rm9200.c
src/jtag/drivers/bitbang.c
src/jtag/drivers/bitq.c
src/jtag/drivers/driver.c
src/jtag/drivers/dummy.c
src/jtag/drivers/ep93xx.c
src/jtag/drivers/ft2232.c
src/jtag/drivers/gw16012.c
src/jtag/drivers/jlink.c
src/jtag/drivers/parport.c
src/jtag/drivers/presto.c
src/jtag/drivers/rlink.c
src/jtag/drivers/usbprog.c
src/jtag/drivers/vsllink.c
src/jtag/interfaces.h
src/jtag/minidummy/minidummy.c
src/jtag/zy1000/zy1000.c

index bdae42e9686730659136daaa397e9240d43276e9..8ba15838462ecb9cf4043168653b14bf9051f57a 100644 (file)
@@ -21,7 +21,7 @@
 #include "config.h"
 #endif
 
-#include "interface.h"
+#include <jtag/interface.h>
 #include <jtag/commands.h>
 
 
index be261859f26ffe713a72c5c8ed6e20a0c64cc9fd..622101160305519ea976a531e1cbd51723f42440 100644 (file)
@@ -22,7 +22,7 @@
 #include "config.h"
 #endif
 
-#include "interface.h"
+#include <jtag/interface.h>
 #include <jtag/commands.h>
 #include <usb.h>
 #include "usb_common.h"
index ff9f7a4126046863c2747b391a9321b2db6431e9..abaf3adb7eea31415a0d4e045e896e59416656ed 100644 (file)
@@ -21,7 +21,7 @@
 #include "config.h"
 #endif
 
-#include "interface.h"
+#include <jtag/interface.h>
 #include "bitbang.h"
 
 #include <sys/mman.h>
index da19171c15fe67ad054185cfce1e081435445b9a..83c2d29ecf6b8e896c536bdd816677ee6b006ca8 100644 (file)
@@ -25,7 +25,7 @@
 #endif
 
 #include "bitbang.h"
-#include "interface.h"
+#include <jtag/interface.h>
 #include <jtag/commands.h>
 
 /**
index 74555d2bc497d2c1486c104784c37f91571289b9..d04a39e109c0869236265eaf15ed11b6a727857b 100644 (file)
@@ -22,7 +22,7 @@
 #endif
 
 #include "bitq.h"
-#include "interface.h"
+#include <jtag/interface.h>
 
 
 struct bitq_interface* bitq_interface;       /* low level bit queue interface */
index f6fb4b60676a1823b94383f6f4b0a2e8210b196b..fece0f1ef9d803b7b109fd071d2adecd6c23fe2e 100644 (file)
@@ -31,7 +31,7 @@
 #include "config.h"
 #endif
 
-#include "interface.h"
+#include <jtag/interface.h>
 #include "minidriver.h"
 #include <helper/command.h>
 
index c2beb0920cf73dea443eaefc2562b4023657bd9d..7370c81dc5e6a62021c107ba0dd079fc2c0df17d 100644 (file)
@@ -21,7 +21,7 @@
 #include "config.h"
 #endif
 
-#include "interface.h"
+#include <jtag/interface.h>
 #include "bitbang.h"
 #include "../hello.h"
 
index c679b2164344f7c9ce5334a9049c6e01a3add4be..61dc76ede4bdc86dfb4308f1486c6e5ca7477577 100644 (file)
@@ -21,7 +21,7 @@
 #include "config.h"
 #endif
 
-#include "interface.h"
+#include <jtag/interface.h>
 #include "bitbang.h"
 
 #define TDO_BIT                1
index c7503f8a46c19bebaab118c7048d3c394091f6b6..831a5dca79163977c7219324f2128b3999ff8ebd 100644 (file)
@@ -41,7 +41,7 @@
 #endif
 
 /* project specific includes */
-#include "interface.h"
+#include <jtag/interface.h>
 #include <jtag/commands.h>
 #include <helper/time_support.h>
 
index 44e4f8098dda9792ade8745c641b666e3db56e1d..9083e925f074a4a999c06385bc6b92a2143f2b9c 100644 (file)
@@ -21,7 +21,7 @@
 #include "config.h"
 #endif
 
-#include "interface.h"
+#include <jtag/interface.h>
 #include <jtag/commands.h>
 
 
index 89ba33ef6fd6ebd8f37d33e04782ef4218f34f69..54f7cb1d5ec7972e7b23f52947906c3a2f4bd072 100644 (file)
@@ -25,7 +25,7 @@
 #include "config.h"
 #endif
 
-#include "interface.h"
+#include <jtag/interface.h>
 #include <jtag/commands.h>
 #include "usb_common.h"
 
index e5f56113f2473e01ef79ae95eff9ec945740f419..7ff675bab3f40745071e945cacd5250d81003ec7 100644 (file)
@@ -24,7 +24,7 @@
 #include "config.h"
 #endif
 
-#include "interface.h"
+#include <jtag/interface.h>
 #include "bitbang.h"
 
 /* -ino: 060521-1036 */
index e00bac710fad77feb7fd953636b13344055a6253..fac5e8239ba519822c0c81794840ba67e472b68e 100644 (file)
@@ -25,7 +25,7 @@
 #include "windows.h"
 #endif
 
-#include "interface.h"
+#include <jtag/interface.h>
 #include <helper/time_support.h>
 #include "bitq.h"
 
index f8b8bdc2c5b3e3ee54bbd3239afdb571816615fe..43f1940207d608df8d59c6ecc9e02b7aa4300e24 100644 (file)
@@ -28,7 +28,7 @@
 #endif
 
 /* project specific includes */
-#include "interface.h"
+#include <jtag/interface.h>
 #include <jtag/commands.h>
 #include "rlink.h"
 #include "rlink_st7.h"
index de84fbd7073d757b58ee0a44dadf6d12b2ef536d..f6d8a97289454b6b1abe1311d08d97fac10e8638 100644 (file)
@@ -34,7 +34,7 @@
 #include "config.h"
 #endif
 
-#include "interface.h"
+#include <jtag/interface.h>
 #include <jtag/commands.h>
 #include "usb_common.h"
 
index bdc1f4a6638f17dd8344cf44a76f9b48deeb34e1..bbbb5f94cd0b83a601d6982394f05ae98c322462 100644 (file)
@@ -26,7 +26,7 @@
 #include "config.h"
 #endif
 
-#include "interface.h"
+#include <jtag/interface.h>
 #include <jtag/commands.h>
 #include "usb_common.h"
 
index 38f1e714cf6a4b2f52947f3ba6d73d9e766a9103..018a3615e5acddc1737f732b09a9b19dbb3c0ab4 100644 (file)
@@ -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);
index 986a8be2e55050d44aef979fc22b103a62ac5868..41181550ec6eeb725cbc1b73924e57e1a5a22260 100644 (file)
@@ -22,7 +22,7 @@
 
 #include "embeddedice.h"
 #include "minidriver.h"
-#include "interface.h"
+#include <jtag/interface.h>
 
 struct jtag_interface minidummy_interface =
 {
index 07d840feffebc74f8cb10f04dfe6b7c52b417252..821f161eeb8b828d7e982d73d7f579b585bb4e4b 100644 (file)
@@ -22,7 +22,7 @@
 
 #include "embeddedice.h"
 #include "minidriver.h"
-#include "interface.h"
+#include <jtag/interface.h>
 #include "zy1000_version.h"
 
 #include <cyg/hal/hal_io.h>             // low level i/o

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)