summaryrefslogtreecommitdiff
path: root/src/target/image.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 03:08:29 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:04 -0800
commit9f212b01be20da43ba534ad33b20419779c89335 (patch)
tree2c7fee0d42eb27047ba365fb603c663399566b94 /src/target/image.h
parentf59ec2043b840a4534fdd61502de59e2571988d5 (diff)
downloadopenocd+libswd-9f212b01be20da43ba534ad33b20419779c89335.tar.gz
openocd+libswd-9f212b01be20da43ba534ad33b20419779c89335.tar.bz2
openocd+libswd-9f212b01be20da43ba534ad33b20419779c89335.tar.xz
openocd+libswd-9f212b01be20da43ba534ad33b20419779c89335.zip
fileio_t -> struct fileio
Remove useless structure typedef.
Diffstat (limited to 'src/target/image.h')
-rw-r--r--src/target/image.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/target/image.h b/src/target/image.h
index 30240d56..a1e24c44 100644
--- a/src/target/image.h
+++ b/src/target/image.h
@@ -69,12 +69,12 @@ typedef struct image_s
typedef struct image_binary_s
{
- fileio_t fileio;
+ struct fileio fileio;
} image_binary_t;
typedef struct image_ihex_s
{
- fileio_t fileio;
+ struct fileio fileio;
uint8_t *buffer;
} image_ihex_t;
@@ -87,7 +87,7 @@ typedef struct image_memory_s
typedef struct fileio_elf_s
{
- fileio_t fileio;
+ struct fileio fileio;
Elf32_Ehdr *header;
Elf32_Phdr *segments;
uint32_t segment_count;
@@ -96,7 +96,7 @@ typedef struct fileio_elf_s
typedef struct image_mot_s
{
- fileio_t fileio;
+ struct fileio fileio;
uint8_t *buffer;
} image_mot_t;