flash_driver_t -> struct flash_driver

Remove misleading typedef and redundant suffix from struct flash_driver.
This commit is contained in:
Zachary T Welch
2009-11-13 07:38:01 -08:00
parent fb59ec739a
commit 632fd663a8
22 changed files with 42 additions and 42 deletions

View File

@@ -82,7 +82,7 @@ struct flash_bank_s;
* corresponding static <code>flash_driver_<i>callback</i>()</code>
* routine in flash.c.
*/
typedef struct flash_driver_s
struct flash_driver
{
/**
* Gives a human-readable name of this flash driver,
@@ -224,7 +224,7 @@ typedef struct flash_driver_s
* @returns ERROR_OK if successful; otherwise, an error code.
*/
int (*auto_probe)(struct flash_bank_s *bank);
} flash_driver_t;
};
#define FLASH_BANK_COMMAND_HANDLER(name) static __FLASH_BANK_COMMAND(name)
@@ -242,7 +242,7 @@ typedef struct flash_bank_s
{
struct target_s *target; /**< Target to which this bank belongs. */
flash_driver_t *driver; /**< Driver for this bank. */
struct flash_driver *driver; /**< Driver for this bank. */
void *driver_priv; /**< Private driver storage pointer */
int bank_number; /**< The 'bank' (or chip number) of this instance. */