]> git.sur5r.net Git - u-boot/blobdiff - drivers/mtd/spi/spi_flash.c
sf: stmicro: drop redundant id read
[u-boot] / drivers / mtd / spi / spi_flash.c
index d1d81af0ec075c753e8129b117c3151a1b1ad312..21ba5f9009359e888e90f96aefac7f76bf7a35d2 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (C) 2008 Atmel Corporation
  */
-#define DEBUG
+
 #include <common.h>
 #include <malloc.h>
 #include <spi.h>
@@ -138,6 +138,11 @@ struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
        case 0x20:
                flash = spi_flash_probe_stmicro(spi, idcode);
                break;
+#endif
+#ifdef CONFIG_SPI_FLASH_SST
+       case 0xBF:
+               flash = spi_flash_probe_sst(spi, idcode);
+               break;
 #endif
        default:
                debug("SF: Unsupported manufacturer %02X\n", idcode[0]);