mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
36cd4fb5d2
This driver had resided in the OMAP tree but is now to be in MTD. Original authors were: Jarkko Lavinen <jarkko.lavinen@nokia.com> and Juha Yrjölä IRQ and DMA support written by Timo Teras Signed-off-by: Adrian Hunter <ext-adrian.hunter@nokia.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
16 lines
314 B
Makefile
16 lines
314 B
Makefile
#
|
|
# Makefile for the OneNAND MTD
|
|
#
|
|
|
|
# Core functionality.
|
|
obj-$(CONFIG_MTD_ONENAND) += onenand.o
|
|
|
|
# Board specific.
|
|
obj-$(CONFIG_MTD_ONENAND_GENERIC) += generic.o
|
|
obj-$(CONFIG_MTD_ONENAND_OMAP2) += omap2.o
|
|
|
|
# Simulator
|
|
obj-$(CONFIG_MTD_ONENAND_SIM) += onenand_sim.o
|
|
|
|
onenand-objs = onenand_base.o onenand_bbt.o
|