diff options
author | Albin Tonnerre <albin.tonnerre@free-electrons.com> | 2009-08-07 12:37:36 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-08-09 23:45:14 +0200 |
commit | 3ac374c0f0b7d856f1a43317a286f2079106bd6a (patch) | |
tree | 67293a0f6a1a3713cde4676404f4c1b4bcc49a6a /drivers/mtd/spi/Makefile | |
parent | 30951960bae9a2c33e324a7165962a082e913f9e (diff) | |
download | u-boot-imx-3ac374c0f0b7d856f1a43317a286f2079106bd6a.zip u-boot-imx-3ac374c0f0b7d856f1a43317a286f2079106bd6a.tar.gz u-boot-imx-3ac374c0f0b7d856f1a43317a286f2079106bd6a.tar.bz2 |
Add driver for the ST M95xxx SPI EEPROM
This chip is used in a number of boards manufactured by Calao-Systems
which should be supported soon. This driver provides the necessary
spi_read and spi_write functions necessary to communicate with the chip.
Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
Diffstat (limited to 'drivers/mtd/spi/Makefile')
-rw-r--r-- | drivers/mtd/spi/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/spi/Makefile b/drivers/mtd/spi/Makefile index 27dcbff..e3e0292 100644 --- a/drivers/mtd/spi/Makefile +++ b/drivers/mtd/spi/Makefile @@ -31,6 +31,7 @@ COBJS-$(CONFIG_SPI_FLASH_MACRONIX) += macronix.o COBJS-$(CONFIG_SPI_FLASH_SPANSION) += spansion.o COBJS-$(CONFIG_SPI_FLASH_SST) += sst.o COBJS-$(CONFIG_SPI_FLASH_STMICRO) += stmicro.o +COBJS-$(CONFIG_SPI_M95XXX) += eeprom_m95xxx.o COBJS := $(COBJS-y) SRCS := $(COBJS:.o=.c) |