dm: sf: Save flash flags to struct spi_flash

Add a new member 'flags' in struct spi_flash to store the flash flags
during spi_flash_validate_params().

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com>
This commit is contained in:
Bin Meng 2015-04-28 13:29:54 +05:30 committed by Jagannadha Sutradharudu Teki
parent 611c9ba2b8
commit be7be78e10
2 changed files with 4 additions and 0 deletions

View file

@ -65,6 +65,7 @@ struct spi_flash {
struct spi_slave *spi;
#ifdef CONFIG_DM_SPI_FLASH
struct udevice *dev;
u16 flags;
#endif
const char *name;
u8 dual_flash;