diff options
author | David Howells <dhowells@redhat.com> | 2007-05-10 22:51:50 -0700 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2007-05-11 12:14:15 +0100 |
commit | acaebfd8a7af0019b2edfcf4045c56c3e18375c5 (patch) | |
tree | 312d91a96fbc6ed3672220e2c4087a196e5ab6cf /drivers/mtd/Makefile | |
parent | 33672f72b24191fb17c3666ec1c620f3fa617b50 (diff) | |
download | linux-acaebfd8a7af0019b2edfcf4045c56c3e18375c5.tar.bz2 |
[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/Makefile | 3 |
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 @@ # # Makefile for the memory technology device drivers. # -# $Id: Makefile.common,v 1.7 2005/07/11 10:39:27 gleixner Exp $ # Core functionality. -mtd-y := mtdcore.o +mtd-y := mtdcore.o mtdsuper.o mtd-$(CONFIG_MTD_PARTITIONS) += mtdpart.o obj-$(CONFIG_MTD) += $(mtd-y) |