summaryrefslogtreecommitdiff
path: root/src/flash/lpc288x.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 07:38:05 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:06 -0800
commit12f83f0429a84168f8761a575a12c703025dd598 (patch)
tree109a80c4f5bd4dc54053c378debb4a7900542a5f /src/flash/lpc288x.h
parenta15d4cc75eb7bae55db5f6a156cd15918d574688 (diff)
downloadopenocd+libswd-12f83f0429a84168f8761a575a12c703025dd598.tar.gz
openocd+libswd-12f83f0429a84168f8761a575a12c703025dd598.tar.bz2
openocd+libswd-12f83f0429a84168f8761a575a12c703025dd598.tar.xz
openocd+libswd-12f83f0429a84168f8761a575a12c703025dd598.zip
lpc288x_flash_bank_t -> struct lpc288x_flash_bank
Remove misleading typedef and redundant suffix from struct lpc288x_flash_bank.
Diffstat (limited to 'src/flash/lpc288x.h')
-rw-r--r--src/flash/lpc288x.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flash/lpc288x.h b/src/flash/lpc288x.h
index 506988f5..5a71ee08 100644
--- a/src/flash/lpc288x.h
+++ b/src/flash/lpc288x.h
@@ -23,7 +23,7 @@
#include "flash.h"
-typedef struct lpc288x_flash_bank_s
+struct lpc288x_flash_bank
{
uint32_t working_area;
uint32_t working_area_size;
@@ -34,6 +34,6 @@ typedef struct lpc288x_flash_bank_s
uint32_t cclk;
uint32_t sector_size_break;
-} lpc288x_flash_bank_t;
+};
#endif /* lpc288x_H */