zephyr: replace zephyr integer types with C99 types
git grep -l 'u\(8\|16\|32\|64\)_t' | \ xargs sed -i "s/u\(8\|16\|32\|64\)_t/uint\1_t/g" git grep -l 's\(8\|16\|32\|64\)_t' | \ xargs sed -i "s/s\(8\|16\|32\|64\)_t/int\1_t/g" Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
ee6fa31af6
commit
a1b77fd589
2364 changed files with 32505 additions and 32505 deletions
|
@ -31,7 +31,7 @@ BUILD_ASSERT((CONFIG_IMG_BLOCK_BUF_SIZE % FLASH_WRITE_BLOCK_SIZE == 0),
|
|||
"CONFIG_IMG_BLOCK_BUF_SIZE is not a multiple of "
|
||||
"FLASH_WRITE_BLOCK_SIZE");
|
||||
|
||||
int flash_img_buffered_write(struct flash_img_context *ctx, u8_t *data,
|
||||
int flash_img_buffered_write(struct flash_img_context *ctx, uint8_t *data,
|
||||
size_t len, bool flush)
|
||||
{
|
||||
int rc;
|
||||
|
@ -61,7 +61,7 @@ size_t flash_img_bytes_written(struct flash_img_context *ctx)
|
|||
return stream_flash_bytes_written(&ctx->stream);
|
||||
}
|
||||
|
||||
int flash_img_init_id(struct flash_img_context *ctx, u8_t area_id)
|
||||
int flash_img_init_id(struct flash_img_context *ctx, uint8_t area_id)
|
||||
{
|
||||
int rc;
|
||||
struct device *flash_dev;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue