Transform 'u16' to 'uint16_t'
- Replace '\([^_]\)u16' with '\1uint16_t'. - Replace '^u16' with 'uint16_t'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2277 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -380,17 +380,17 @@ extern target_event_callback_t *target_event_callbacks;
|
||||
extern target_timer_callback_t *target_timer_callbacks;
|
||||
|
||||
extern u32 target_buffer_get_u32(target_t *target, const uint8_t *buffer);
|
||||
extern u16 target_buffer_get_u16(target_t *target, const uint8_t *buffer);
|
||||
extern uint16_t target_buffer_get_u16(target_t *target, const uint8_t *buffer);
|
||||
extern uint8_t target_buffer_get_u8 (target_t *target, const uint8_t *buffer);
|
||||
extern void target_buffer_set_u32(target_t *target, uint8_t *buffer, u32 value);
|
||||
extern void target_buffer_set_u16(target_t *target, uint8_t *buffer, u16 value);
|
||||
extern void target_buffer_set_u16(target_t *target, uint8_t *buffer, uint16_t value);
|
||||
extern void target_buffer_set_u8 (target_t *target, uint8_t *buffer, uint8_t value);
|
||||
|
||||
int target_read_u32(struct target_s *target, u32 address, u32 *value);
|
||||
int target_read_u16(struct target_s *target, u32 address, u16 *value);
|
||||
int target_read_u16(struct target_s *target, u32 address, uint16_t *value);
|
||||
int target_read_u8(struct target_s *target, u32 address, uint8_t *value);
|
||||
int target_write_u32(struct target_s *target, u32 address, u32 value);
|
||||
int target_write_u16(struct target_s *target, u32 address, u16 value);
|
||||
int target_write_u16(struct target_s *target, u32 address, uint16_t value);
|
||||
int target_write_u8(struct target_s *target, u32 address, uint8_t value);
|
||||
|
||||
/* Issues USER() statements with target state information */
|
||||
|
||||
Reference in New Issue
Block a user