diff options
author | Tom Rini <trini@konsulko.com> | 2015-10-27 19:09:15 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-10-27 19:09:15 -0400 |
commit | 714eec71bb7c0abf44f1a02b8aa99b864e437e62 (patch) | |
tree | 3e6b4d18394cbe3a452e493452e1507325459699 /include | |
parent | 2431492aef1de33bd222c97ecc131a338d9c454e (diff) | |
parent | 622b95274e4d699f3c713c325e958565312625ad (diff) |
Merge git://www.denx.de/git/u-boot-cfi-flash
Diffstat (limited to 'include')
-rw-r--r-- | include/mtd/cfi_flash.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/mtd/cfi_flash.h b/include/mtd/cfi_flash.h index 048b4773fc..52572b9b02 100644 --- a/include/mtd/cfi_flash.h +++ b/include/mtd/cfi_flash.h @@ -105,10 +105,10 @@ #define NUM_ERASE_REGIONS 4 /* max. number of erase regions */ typedef union { - unsigned char c; - unsigned short w; - unsigned long l; - unsigned long long ll; + u8 w8; + u16 w16; + u32 w32; + u64 w64; } cfiword_t; /* CFI standard query structure */ |