acc8dadc0b
Remove the blkmtd driver. - An alternative exists (block2mtd) that hasn't had bug report for > 1 year. - Most embedded people tend to use ancient kernels with custom patches from mtd cvs and elsewhere, so the 1 year warning period neither helps nor hurts them too much. - It's in the way of klibc. The problems caused by pulling blkmtd support are fairly low, while the problems caused by delaying klibc can be fairly substantial. At best, this would be a severe burden on hpa's time. Signed-off-by: Joern Engel <joern@wohnheim.fh-wedel.de> Acked-by: Thomas Gleixner <tglx@linutronix.de> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: David Woodhouse <dwmw2@infradead.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
27 lines
937 B
Makefile
27 lines
937 B
Makefile
#
|
|
# linux/drivers/devices/Makefile
|
|
#
|
|
# $Id: Makefile.common,v 1.7 2004/12/22 17:51:15 joern Exp $
|
|
|
|
# *** BIG UGLY NOTE ***
|
|
#
|
|
# The removal of get_module_symbol() and replacement with
|
|
# inter_module_register() et al has introduced a link order dependency
|
|
# here where previously there was none. We now have to ensure that
|
|
# doc200[01].o are linked before docprobe.o
|
|
|
|
obj-$(CONFIG_MTD_DOC2000) += doc2000.o
|
|
obj-$(CONFIG_MTD_DOC2001) += doc2001.o
|
|
obj-$(CONFIG_MTD_DOC2001PLUS) += doc2001plus.o
|
|
obj-$(CONFIG_MTD_DOCPROBE) += docprobe.o
|
|
obj-$(CONFIG_MTD_DOCECC) += docecc.o
|
|
obj-$(CONFIG_MTD_SLRAM) += slram.o
|
|
obj-$(CONFIG_MTD_PHRAM) += phram.o
|
|
obj-$(CONFIG_MTD_PMC551) += pmc551.o
|
|
obj-$(CONFIG_MTD_MS02NV) += ms02-nv.o
|
|
obj-$(CONFIG_MTD_MTDRAM) += mtdram.o
|
|
obj-$(CONFIG_MTD_LART) += lart.o
|
|
obj-$(CONFIG_MTD_BLOCK2MTD) += block2mtd.o
|
|
obj-$(CONFIG_MTD_DATAFLASH) += mtd_dataflash.o
|
|
obj-$(CONFIG_MTD_M25P80) += m25p80.o
|