diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2008-07-09 04:28:38 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2008-10-16 11:38:35 -0400 |
commit | a65e5d782f9db2a61a914dc01a329e0c2dcf92a1 (patch) | |
tree | 2143455a8bbcb49bbcef746e45f06e497f2eadfb /drivers/mtd | |
parent | 04ab591808565f968d4406f6435090ad671ebdab (diff) |
remove CONFIG_KMOD from drivers
Straight forward conversions to CONFIG_MODULE; many drivers
include <linux/kmod.h> conditionally and then don't have any
other conditional code so remove it from those.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Cc: video4linux-list@redhat.com
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: linux-ppp@vger.kernel.org
Cc: dm-devel@redhat.com
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/mtdpart.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/mtd/mtdpart.c b/drivers/mtd/mtdpart.c index edb90b58a9b1..9a06dc93ee0d 100644 --- a/drivers/mtd/mtdpart.c +++ b/drivers/mtd/mtdpart.c | |||
@@ -564,10 +564,8 @@ int parse_mtd_partitions(struct mtd_info *master, const char **types, | |||
564 | 564 | ||
565 | for ( ; ret <= 0 && *types; types++) { | 565 | for ( ; ret <= 0 && *types; types++) { |
566 | parser = get_partition_parser(*types); | 566 | parser = get_partition_parser(*types); |
567 | #ifdef CONFIG_KMOD | ||
568 | if (!parser && !request_module("%s", *types)) | 567 | if (!parser && !request_module("%s", *types)) |
569 | parser = get_partition_parser(*types); | 568 | parser = get_partition_parser(*types); |
570 | #endif | ||
571 | if (!parser) { | 569 | if (!parser) { |
572 | printk(KERN_NOTICE "%s partition parsing not available\n", | 570 | printk(KERN_NOTICE "%s partition parsing not available\n", |
573 | *types); | 571 | *types); |