
-----Original Message----- From: Mike Frysinger [mailto:vapier@gentoo.org] Sent: Monday, March 16, 2009 12:38 PM To: u-boot@lists.denx.de Cc: Hu Mingkai-B21284; Fleming Andy-AFLEMING Subject: Re: [U-Boot] [PATCH 2/7] mtd: SPI Flash: Support the Spansion Flash
On Sunday 15 March 2009 22:52:18 Mingkai Hu wrote:
Add MTD SPI Flash support for S25FL008A, S25FL016A, S25FL032A, S25FL064A, S25FL128P.
this doesnt really need to be part of this patch series and can be added all by itself
--- a/drivers/mtd/spi/Makefile +++ b/drivers/mtd/spi/Makefile @@ -28,6 +28,7 @@ LIB := $(obj)libspi_flash.a COBJS-$(CONFIG_SPI_FLASH) += spi_flash.o COBJS-$(CONFIG_SPI_FLASH_ATMEL) += atmel.o COBJS-$(CONFIG_SPI_FLASH_STMICRO) += stmicro.o +COBJS-$(CONFIG_SPI_FLASH_SPANSION) += spansion.o
this should be above stmicro -- keep it sorted
also, the += is supposed to be indented with a tab, not spaces -mike
Thanks, I'll fix it.
Best Regards, Mingkai