cfi_atmel_pri_ext_t -> struct cfi_atmel_pri_ext
Remove misleading typedef and redundant suffix from struct cfi_atmel_pri_ext.
This commit is contained in:
parent
1f328f2885
commit
2ded74115d
|
@ -446,7 +446,7 @@ static int cfi_read_spansion_pri_ext(flash_bank_t *bank)
|
||||||
static int cfi_read_atmel_pri_ext(flash_bank_t *bank)
|
static int cfi_read_atmel_pri_ext(flash_bank_t *bank)
|
||||||
{
|
{
|
||||||
int retval;
|
int retval;
|
||||||
cfi_atmel_pri_ext_t atmel_pri_ext;
|
struct cfi_atmel_pri_ext atmel_pri_ext;
|
||||||
struct cfi_flash_bank *cfi_info = bank->driver_priv;
|
struct cfi_flash_bank *cfi_info = bank->driver_priv;
|
||||||
cfi_spansion_pri_ext_t *pri_ext = malloc(sizeof(cfi_spansion_pri_ext_t));
|
cfi_spansion_pri_ext_t *pri_ext = malloc(sizeof(cfi_spansion_pri_ext_t));
|
||||||
target_t *target = bank->target;
|
target_t *target = bank->target;
|
||||||
|
|
|
@ -120,7 +120,7 @@ typedef struct cfi_spansion_pri_ext_s
|
||||||
/* Atmel primary extended query table as defined for and used by
|
/* Atmel primary extended query table as defined for and used by
|
||||||
* the linux kernel cfi driver (as of 2.6.20+)
|
* the linux kernel cfi driver (as of 2.6.20+)
|
||||||
*/
|
*/
|
||||||
typedef struct cfi_atmel_pri_ext_s
|
struct cfi_atmel_pri_ext
|
||||||
{
|
{
|
||||||
uint8_t pri[3];
|
uint8_t pri[3];
|
||||||
uint8_t major_version;
|
uint8_t major_version;
|
||||||
|
@ -129,7 +129,7 @@ typedef struct cfi_atmel_pri_ext_s
|
||||||
uint8_t bottom_boot;
|
uint8_t bottom_boot;
|
||||||
uint8_t burst_mode;
|
uint8_t burst_mode;
|
||||||
uint8_t page_mode;
|
uint8_t page_mode;
|
||||||
} cfi_atmel_pri_ext_t;
|
};
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
CFI_UNLOCK_555_2AA,
|
CFI_UNLOCK_555_2AA,
|
||||||
|
|
Loading…
Reference in New Issue