aboutsummaryrefslogtreecommitdiff
path: root/src/flash/mx3_nand.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 07:38:27 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:07 -0800
commit4bc46d61cade59a43d158862dfbe738255f00a81 (patch)
tree325e4b2e1a12c033734755ccdbb55c9cb8f94640 /src/flash/mx3_nand.h
parent79338ec6c208fc34d2c16d109dea6bf5ae20f860 (diff)
mx3_nf_controller_t -> struct mx3_nf_controller
Remove misleading typedef and redundant suffix from struct mx3_nf_controller.
Diffstat (limited to 'src/flash/mx3_nand.h')
-rw-r--r--src/flash/mx3_nand.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flash/mx3_nand.h b/src/flash/mx3_nand.h
index 31938933..1f3529a7 100644
--- a/src/flash/mx3_nand.h
+++ b/src/flash/mx3_nand.h
@@ -108,10 +108,10 @@ struct mx3_nf_flags
unsigned hw_ecc_enabled:1;
};
-typedef struct mx3_nf_controller_s
+struct mx3_nf_controller
{
struct target_s *target;
enum mx_dataout_type optype;
enum mx_nf_finalize_action fin;
struct mx3_nf_flags flags;
-} mx3_nf_controller_t;
+};