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:
Mike Frysinger 2011-04-25 06:58:29 +00:00 committed by Wolfgang Denk
parent 2744a4e688
commit d4aa500913
8 changed files with 80 additions and 325 deletions

View file

@ -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,