lpc3180_nand_controller_t -> struct lpc3180_nand_controller

Remove misleading typedef and redundant suffix from struct lpc3180_nand_controller.
This commit is contained in:
Zachary T Welch
2009-11-13 07:38:11 -08:00
parent b712a4e8b8
commit ed1aed8dd9
2 changed files with 16 additions and 16 deletions

View File

@@ -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 */