From 86173cdbddde781b19ac630602f2d450a59b32b5 Mon Sep 17 00:00:00 2001 From: zwelch Date: Thu, 18 Jun 2009 07:04:08 +0000 Subject: Transform 'u8' to 'uint8_t' in src/target - Replace '\([^_]\)u8' with '\1uint8_t'. - Replace '^u8' with 'uint8_t'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2274 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/target/xscale.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/target/xscale.h') diff --git a/src/target/xscale.h b/src/target/xscale.h index 96e3fe22..cfc74b86 100644 --- a/src/target/xscale.h +++ b/src/target/xscale.h @@ -57,7 +57,7 @@ enum xscale_trace_entry_type typedef struct xscale_trace_entry_s { - u8 data; + uint8_t data; enum xscale_trace_entry_type type; } xscale_trace_entry_t; @@ -105,8 +105,8 @@ typedef struct xscale_common_s u32 high_vectors[8]; /* static low vectors */ - u8 static_low_vectors_set; /* bit field with static vectors set by the user */ - u8 static_high_vectors_set; /* bit field with static vectors set by the user */ + uint8_t static_low_vectors_set; /* bit field with static vectors set by the user */ + uint8_t static_high_vectors_set; /* bit field with static vectors set by the user */ u32 static_low_vectors[8]; u32 static_high_vectors[8]; @@ -127,7 +127,7 @@ typedef struct xscale_common_s u32 arm_bkpt; u16 thumb_bkpt; - u8 vector_catch; + uint8_t vector_catch; xscale_trace_t trace; -- cgit v1.2.3