From: Zachary T Welch Date: Fri, 13 Nov 2009 16:43:02 +0000 (-0800) Subject: image_binary_t -> struct image_binary X-Git-Tag: v0.4.0-rc1~663 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=a87faf5b66fabb03cdf15a54185f15b91da779c2 image_binary_t -> struct image_binary Remove misleading typedef and redundant suffix from struct image_binary. --- diff --git a/src/target/image.c b/src/target/image.c index 0247310f63..e8affb6d87 100644 --- a/src/target/image.c +++ b/src/target/image.c @@ -680,9 +680,9 @@ int image_open(image_t *image, const char *url, const char *type_string) if (image->type == IMAGE_BINARY) { - image_binary_t *image_binary; + struct image_binary *image_binary; - image_binary = image->type_private = malloc(sizeof(image_binary_t)); + image_binary = image->type_private = malloc(sizeof(struct image_binary)); if ((retval = fileio_open(&image_binary->fileio, url, FILEIO_READ, FILEIO_BINARY)) != ERROR_OK) { @@ -811,7 +811,7 @@ int image_read_section(image_t *image, int section, uint32_t offset, uint32_t si if (image->type == IMAGE_BINARY) { - image_binary_t *image_binary = image->type_private; + struct image_binary *image_binary = image->type_private; /* only one section in a plain binary */ if (section != 0) @@ -938,7 +938,7 @@ void image_close(image_t *image) { if (image->type == IMAGE_BINARY) { - image_binary_t *image_binary = image->type_private; + struct image_binary *image_binary = image->type_private; fileio_close(&image_binary->fileio); } diff --git a/src/target/image.h b/src/target/image.h index 746f3d24a1..b150b90c74 100644 --- a/src/target/image.h +++ b/src/target/image.h @@ -67,10 +67,10 @@ typedef struct image_s uint32_t start_address; /* start address, if one is set */ } image_t; -typedef struct image_binary_s +struct image_binary { struct fileio fileio; -} image_binary_t; +}; typedef struct image_ihex_s {