diff options
| -rw-r--r-- | drivers/mtd/spi/spi_flash_probe.c | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/drivers/mtd/spi/spi_flash_probe.c b/drivers/mtd/spi/spi_flash_probe.c index 7d8ed6e47..e64b0102f 100644 --- a/drivers/mtd/spi/spi_flash_probe.c +++ b/drivers/mtd/spi/spi_flash_probe.c @@ -36,6 +36,10 @@ struct spi_flash_params {  };  static const struct spi_flash_params spi_flash_params_table[] = { +#ifdef CONFIG_SPI_FLASH_EON		/* EON */ +	{"EN25Q32B",		0x1c3016, 0x0,	   64 * 1024,	  64}, +	{"EN25Q128B",		0x1c3018, 0x0,     64 * 1024,	 256}, +#endif  #ifdef CONFIG_SPI_FLASH_STMICRO		/* STMICRO */  	{"M25P10",		0x202011, 0x0,     32 * 1024,	   4},  	{"M25P20",		0x202012, 0x0,     64 * 1024,	   4}, @@ -61,7 +65,6 @@ static const struct spi_flash_params spi_flash_params_table[] = {  	/*  	 * TODO:  	 * ATMEL -	 * EON  	 * GIGADEVICE  	 * MACRONIX  	 * RAMTRON |