From 1840226d555b9863a2315bcc6218671fdfa2af32 Mon Sep 17 00:00:00 2001 From: zwelch Date: Thu, 18 Jun 2009 07:10:25 +0000 Subject: Transform 'u32' to 'uint32_t' in src/flash. - Replace '\([^_]\)u32' with '\1uint32_t'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2280 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/flash/cfi.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/flash/cfi.h') diff --git a/src/flash/cfi.h b/src/flash/cfi.h index bea4a203..eab2dcdc 100644 --- a/src/flash/cfi.h +++ b/src/flash/cfi.h @@ -62,11 +62,11 @@ typedef struct cfi_flash_bank_s uint8_t status_poll_mask; /* flash geometry */ - u32 dev_size; + uint32_t dev_size; uint16_t interface_desc; uint16_t max_buf_write_size; uint8_t num_erase_regions; - u32 *erase_region_info; + uint32_t *erase_region_info; void *pri_ext; void *alt_ext; @@ -81,7 +81,7 @@ typedef struct cfi_intel_pri_ext_s char pri[3]; uint8_t major_version; uint8_t minor_version; - u32 feature_support; + uint32_t feature_support; uint8_t suspend_cmd_support; uint16_t blk_status_reg_mask; uint8_t vcc_optimal; @@ -113,8 +113,8 @@ typedef struct cfi_spansion_pri_ext_s uint8_t VppMax; uint8_t TopBottom; int _reversed_geometry; - u32 _unlock1; - u32 _unlock2; + uint32_t _unlock1; + uint32_t _unlock2; } cfi_spansion_pri_ext_t; /* Atmel primary extended query table as defined for and used by @@ -138,8 +138,8 @@ enum { typedef struct cfi_unlock_addresses_s { - u32 unlock1; - u32 unlock2; + uint32_t unlock1; + uint32_t unlock2; } cfi_unlock_addresses_t; typedef struct cfi_fixup_s -- cgit v1.2.3