]> pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[MTD] Makefile fix for mtdsuper
authorSatyam Sharma <satyam@infradead.org>
Fri, 3 Aug 2007 02:57:13 +0000 (08:27 +0530)
committerDavid Woodhouse <dwmw2@infradead.org>
Fri, 3 Aug 2007 11:42:40 +0000 (12:42 +0100)
We want drivers/mtd/{mtdcore, mtdsuper, mtdpart}.c to be built and linked
into the same mtd.ko module. Fix the Makefile to ensure this, and remove
duplicate MODULE_ declarations in mtdpart.c, as mtdcore.c already has them.

Signed-off-by: Satyam Sharma <satyam@infradead.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
drivers/mtd/Makefile
drivers/mtd/mtdpart.c

index 451adcc52b3c5c281da118b50768ccd338a482a8..6d958a4566ffdf041397b9c685a76b88587493d4 100644 (file)
@@ -3,9 +3,9 @@
 #
 
 # Core functionality.
+obj-$(CONFIG_MTD)              += mtd.o
 mtd-y                          := mtdcore.o mtdsuper.o
 mtd-$(CONFIG_MTD_PARTITIONS)   += mtdpart.o
-obj-$(CONFIG_MTD)              += $(mtd-y)
 
 obj-$(CONFIG_MTD_CONCAT)       += mtdconcat.o
 obj-$(CONFIG_MTD_REDBOOT_PARTS) += redboot.o
index 9c6236852942ec7e98441c5a333c1786a0e83a0c..6174a97d790274f5aa1245dc53171c324482ebb9 100644 (file)
@@ -560,7 +560,3 @@ int parse_mtd_partitions(struct mtd_info *master, const char **types,
 EXPORT_SYMBOL_GPL(parse_mtd_partitions);
 EXPORT_SYMBOL_GPL(register_mtd_parser);
 EXPORT_SYMBOL_GPL(deregister_mtd_parser);
-
-MODULE_LICENSE("GPL");
-MODULE_AUTHOR("Nicolas Pitre <nico@cam.org>");
-MODULE_DESCRIPTION("Generic support for partitioning of MTD devices");