]> git.sur5r.net Git - openocd/commitdiff
image_binary_t -> struct image_binary
authorZachary T Welch <zw@superlucidity.net>
Fri, 13 Nov 2009 16:43:02 +0000 (08:43 -0800)
committerZachary T Welch <zw@superlucidity.net>
Fri, 13 Nov 2009 19:58:11 +0000 (11:58 -0800)
Remove misleading typedef and redundant suffix from struct image_binary.

src/target/image.c
src/target/image.h

index 0247310f637f84e1c789d4c609c148cdddff99ac..e8affb6d87e6d8f786717979fe8852eb3f7a924f 100644 (file)
@@ -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);
        }
index 746f3d24a17714a18ad90830286d8decfac5cd9f..b150b90c741849f25d08feb725566eb65111b3e1 100644 (file)
@@ -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
 {