Transform 'u64' to 'uint64_t'
- Replace '\([^_]\)u64' with '\1uint64_t'.
---
 helper/types.h |    4 ++--
 target/trace.h |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
Transform 'u64' to 'uint64_t'
- Replace '\([^_]\)u64' with '\1uint64_t'.
---
 helper/types.h |    4 ++--
 target/trace.h |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
======
diff -u src/helper/types.h src/helper/types.h
--- src/helper/types.h	(working copy)
+++ src/helper/types.h	(working copy)
@@ -42,8 +42,8 @@
 typedef unsigned int uint32_t;
 #endif
 
-#ifndef u64
-typedef unsigned long long u64;
+#ifndef uint64_t
+typedef unsigned long long uint64_t;
 #endif
 
 typedef struct jtag_tap_s jtag_tap_t;
diff -u src/target/trace.h src/target/trace.h
--- src/target/trace.h	(working copy)
+++ src/target/trace.h	(working copy)
@@ -28,7 +28,7 @@
 typedef struct trace_point_s
 {
 	uint32_t address;
-	u64 hit_counter;
+	uint64_t hit_counter;
 } trace_point_t;
 
 typedef struct trace_s
_______________________________________________
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to