mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
sf: unify write funcs
Once we add a new page_size field for write lengths, we can unify the write methods for most of the spi flash drivers. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:

committed by
Wolfgang Denk

parent
2744a4e688
commit
d4aa500913
@ -31,8 +31,11 @@ struct spi_flash {
|
||||
|
||||
const char *name;
|
||||
|
||||
/* Total flash size */
|
||||
u32 size;
|
||||
|
||||
/* Write (page) size */
|
||||
u32 page_size;
|
||||
/* Erase (sector) size */
|
||||
u32 sector_size;
|
||||
|
||||
int (*read)(struct spi_flash *flash, u32 offset,
|
||||
|
Reference in New Issue
Block a user