forked from auracaster/openocd
Transform 'u8' to 'uint8_t' in src/flash
- Replace '\([^_]\)u8' with '\1uint8_t'. - Replace '^u8' with 'uint8_t'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2275 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -166,7 +166,7 @@ typedef struct flash_driver_s
|
||||
* @param count The number of bytes to write.
|
||||
* @returns ERROR_OK if successful; otherwise, an error code.
|
||||
*/
|
||||
int (*write)(struct flash_bank_s *bank, u8 *buffer, u32 offset, u32 count);
|
||||
int (*write)(struct flash_bank_s *bank, uint8_t *buffer, u32 offset, u32 count);
|
||||
|
||||
/**
|
||||
* Probe to determine what kind of flash is present.
|
||||
|
||||
Reference in New Issue
Block a user