d75a40e90e
Helper routines in txx9/rbtx4938/spi_eeprom.c is not TX4938 specific. Move it to txx9/generic/ directory and make it works with SPI bus number other than 0. Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org> create mode 100644 arch/mips/txx9/generic/spi_eeprom.c delete mode 100644 arch/mips/txx9/rbtx4938/spi_eeprom.c
13 lines
402 B
Makefile
13 lines
402 B
Makefile
#
|
|
# Makefile for common code for TXx9 based systems
|
|
#
|
|
|
|
obj-y += setup.o
|
|
obj-$(CONFIG_PCI) += pci.o
|
|
obj-$(CONFIG_SOC_TX3927) += setup_tx3927.o irq_tx3927.o
|
|
obj-$(CONFIG_SOC_TX4927) += mem_tx4927.o setup_tx4927.o irq_tx4927.o
|
|
obj-$(CONFIG_SOC_TX4938) += mem_tx4927.o setup_tx4938.o irq_tx4938.o
|
|
obj-$(CONFIG_TOSHIBA_FPCIB0) += smsc_fdc37m81x.o
|
|
obj-$(CONFIG_SPI) += spi_eeprom.o
|
|
|
|
EXTRA_CFLAGS += -Werror
|