aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/Makefile
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2007-05-11 01:51:50 -0400
committerDavid Woodhouse <dwmw2@infradead.org>2007-05-11 07:14:15 -0400
commitacaebfd8a7af0019b2edfcf4045c56c3e18375c5 (patch)
tree312d91a96fbc6ed3672220e2c4087a196e5ab6cf /drivers/mtd/Makefile
parent33672f72b24191fb17c3666ec1c620f3fa617b50 (diff)
[MTD] generalise the handling of MTD-specific superblocks
Generalise the handling of MTD-specific superblocks so that JFFS2 and ROMFS can both share it. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/Makefile')
-rw-r--r--drivers/mtd/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/Makefile b/drivers/mtd/Makefile
index 92055405cb30..451adcc52b3c 100644
--- a/drivers/mtd/Makefile
+++ b/drivers/mtd/Makefile
@@ -1,10 +1,9 @@
1# 1#
2# Makefile for the memory technology device drivers. 2# Makefile for the memory technology device drivers.
3# 3#
4# $Id: Makefile.common,v 1.7 2005/07/11 10:39:27 gleixner Exp $
5 4
6# Core functionality. 5# Core functionality.
7mtd-y := mtdcore.o 6mtd-y := mtdcore.o mtdsuper.o
8mtd-$(CONFIG_MTD_PARTITIONS) += mtdpart.o 7mtd-$(CONFIG_MTD_PARTITIONS) += mtdpart.o
9obj-$(CONFIG_MTD) += $(mtd-y) 8obj-$(CONFIG_MTD) += $(mtd-y)
10 9