change #include "time_support.h" to <helper/time_support.h>
authorZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:14:29 +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 "time_support.h"

the following form should be used.

#include <helper/time_support.h>

The exception is from .c files in the same directory.

18 files changed:
src/flash/flash.c
src/flash/mflash.c
src/flash/nand.c
src/flash/nor/aduc702x.c
src/flash/nor/at91sam3.c
src/jtag/drivers/ft2232.c
src/jtag/drivers/presto.c
src/pld/pld.c
src/svf/svf.c
src/target/arm11.c
src/target/arm11_dbgtap.c
src/target/arm720t.c
src/target/arm7_9_common.c
src/target/arm920t.c
src/target/arm926ejs.c
src/target/arm_adi_v5.c
src/target/target.c
src/target/xscale.c

index 1e5ac9a355c909de777f8e3aacc585cc19ee3be2..e910e42f9bc5e45026589e674f77fb691a4bcdd5 100644 (file)
@@ -30,7 +30,7 @@
 #include "flash.h"
 #include "common.h"
 #include "image.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 
 static int flash_write_unlock(struct target *target, struct image *image, uint32_t *written, int erase, bool unlock);
 
index 43d8ddd326b3c68fdc0264da570c59114fe2e093..63e71db1cc26b4538f98db5df478bc5d603247ef 100644 (file)
@@ -23,7 +23,7 @@
 
 #include "mflash.h"
 #include "target.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 #include <helper/fileio.h>
 #include <helper/log.h>
 
index 087a9ae45639feafef4181c5b1902fc853950119..5bcbea47ba35ac220be7451382e2d576b45dee8a 100644 (file)
@@ -26,7 +26,7 @@
 
 #include "nand.h"
 #include "common.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 #include <helper/fileio.h>
 
 static int nand_read_page(struct nand_device *nand, uint32_t page, uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size);
index 109b48665df27bd4cca31bb1b65edbe8aed90cb5..f7aa7468b0edbb6e28290d4846d1fcb645b158c0 100644 (file)
@@ -26,7 +26,7 @@
 #include "flash.h"
 #include "armv4_5.h"
 #include <helper/binarybuffer.h>
-#include "time_support.h"
+#include <helper/time_support.h>
 #include "algorithm.h"
 
 
index 6be43f80ff2587a83ee2ea3fa742b681b2f19fcf..b27ea941c1391ad478ca5d78a87386a0bc810113 100644 (file)
@@ -64,7 +64,7 @@
 #include "flash.h"
 #include <helper/membuf.h>
 #include "at91sam3.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 
 #define REG_NAME_WIDTH  (12)
 
index 29b6389ced29d94a6fe7962f0feafb374a2b608a..30695a9ab0abada742bf80db447c6ebb845c917c 100644 (file)
@@ -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>
index f4e689c2a527f7eb229ab517c184c362e518b88e..e00bac710fad77feb7fd953636b13344055a6253 100644 (file)
@@ -26,7 +26,7 @@
 #endif
 
 #include "interface.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 #include "bitq.h"
 
 
index 985e36485d1771d697ae11f1da47793e581bd58d..6a0bd93dcc917e444a720cdadfa9c488cf9082d3 100644 (file)
@@ -23,7 +23,7 @@
 
 #include "pld.h"
 #include <helper/log.h>
-#include "time_support.h"
+#include <helper/time_support.h>
 
 
 /* pld drivers
index e01b9332c4d2ae2612a1a944bc51b8e0abc9d24b..65495729149ca2e6854a2451d7ecf38ccbd13ff1 100644 (file)
@@ -33,7 +33,7 @@
 
 #include "jtag.h"
 #include "svf.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 
 
 // SVF command
index 44c9ad300e9d0219324e993fe4a990b8fc04f637..124868e5d00920c75a0206534f20a9f835bca59a 100644 (file)
@@ -30,7 +30,7 @@
 #include "breakpoints.h"
 #include "arm11_dbgtap.h"
 #include "arm_simulator.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 #include "target_type.h"
 #include "algorithm.h"
 #include "register.h"
index 7e1e9cba7493055852d19e1fd7189027e6758e6a..3df1c65894e6cfadfb29f6baf2b2b1a9b43ec6e6 100644 (file)
@@ -27,7 +27,7 @@
 #include "arm_jtag.h"
 #include "arm11_dbgtap.h"
 
-#include "time_support.h"
+#include <helper/time_support.h>
 
 #if 0
 #define JTAG_DEBUG(expr ...)   do { if (1) LOG_DEBUG(expr); } while (0)
index d900d8ae23981fab090b127b0a69d40920deeaba..a4d274ea3f4de834897f400ad68d0696a0fe2402 100644 (file)
@@ -25,7 +25,7 @@
 #endif
 
 #include "arm720t.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 #include "target_type.h"
 #include "register.h"
 
index b5553cd801c2fa168ae7d69bb98b7012feacf104..255a85f57f8207e3406e3cf68d3eb4549af71531 100644 (file)
@@ -34,7 +34,7 @@
 #include "embeddedice.h"
 #include "target_request.h"
 #include "etm.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 #include "arm_simulator.h"
 #include "algorithm.h"
 #include "register.h"
index 17e7a55ae4429e74f529a78cdedb976d246e64b5..e8c1950fa37cf997a767d69c0483cf22e3fa3bdc 100644 (file)
@@ -22,7 +22,7 @@
 #endif
 
 #include "arm920t.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 #include "target_type.h"
 #include "register.h"
 
index ca420aa69d68585cba97bb3ce9e0916d5a512cd3..4dec23da79872a9926e5d8ee3e00d3d76d33a5f1 100644 (file)
@@ -25,7 +25,7 @@
 #endif
 
 #include "arm926ejs.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 #include "target_type.h"
 #include "register.h"
 
index 72408e1e68fe8666975aff3a40879f477d16b252..6ca50ab7ce0e0b614538ba98dbb7e8bc90cc425d 100644 (file)
@@ -39,7 +39,7 @@
 #endif
 
 #include "arm_adi_v5.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 
 /*
  * Transaction Mode:
index 9a605f3dca81401c9f445425a47d3867d19bdb04..e42601956b01cb0cc988652014050408658aa39e 100644 (file)
@@ -37,7 +37,7 @@
 #include "target_type.h"
 #include "target_request.h"
 #include "breakpoints.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 #include "register.h"
 #include "trace.h"
 #include "image.h"
index ccb1de563d80aefa7f8439edc6674186728e69db..1acaba0765f21863cb2b1016ad24f39c9beab4b2 100644 (file)
@@ -33,7 +33,7 @@
 #include "arm_jtag.h"
 #include "arm_simulator.h"
 #include "arm_disassembler.h"
-#include "time_support.h"
+#include <helper/time_support.h>
 #include "register.h"
 #include "image.h"
 

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)