summaryrefslogtreecommitdiff
path: root/src/flash/lpc3180_nand_controller.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 07:38:11 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:06 -0800
commited1aed8dd9f282fe7a948676453054c15d8ebd4e (patch)
tree84a2a0f5cd28074dc29501a40814b56402287ba0 /src/flash/lpc3180_nand_controller.h
parentb712a4e8b85f3b351f2af93d0988d9983e57d6fe (diff)
downloadopenocd_libswd-ed1aed8dd9f282fe7a948676453054c15d8ebd4e.tar.gz
openocd_libswd-ed1aed8dd9f282fe7a948676453054c15d8ebd4e.tar.bz2
openocd_libswd-ed1aed8dd9f282fe7a948676453054c15d8ebd4e.tar.xz
openocd_libswd-ed1aed8dd9f282fe7a948676453054c15d8ebd4e.zip
lpc3180_nand_controller_t -> struct lpc3180_nand_controller
Remove misleading typedef and redundant suffix from struct lpc3180_nand_controller.
Diffstat (limited to 'src/flash/lpc3180_nand_controller.h')
-rw-r--r--src/flash/lpc3180_nand_controller.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flash/lpc3180_nand_controller.h b/src/flash/lpc3180_nand_controller.h
index 8352083b..6f5d2846 100644
--- a/src/flash/lpc3180_nand_controller.h
+++ b/src/flash/lpc3180_nand_controller.h
@@ -29,7 +29,7 @@ enum lpc3180_selected_controller
LPC3180_SLC_CONTROLLER,
};
-typedef struct lpc3180_nand_controller_s
+struct lpc3180_nand_controller
{
struct target_s *target;
int osc_freq;
@@ -37,6 +37,6 @@ typedef struct lpc3180_nand_controller_s
int sw_write_protection;
uint32_t sw_wp_lower_bound;
uint32_t sw_wp_upper_bound;
-} lpc3180_nand_controller_t;
+};
#endif /*LPC3180_NAND_CONTROLLER_H */