summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/ofpart.c
diff options
context:
space:
mode:
authorDmitry Eremin-Solenikov2011-06-27 14:34:46 +0200
committerArtem Bityutskiy2011-09-11 14:02:14 +0200
commit9786f6e68af00d0988ad7f51fe3fd118be1c30ad (patch)
treee4d895549b8fe5ba0f27cdbb9685a48ab4b229cf /drivers/mtd/ofpart.c
parentmtd: nand: handle ECC errors in OOB (diff)
downloadkernel-qcow2-linux-9786f6e68af00d0988ad7f51fe3fd118be1c30ad.tar.gz
kernel-qcow2-linux-9786f6e68af00d0988ad7f51fe3fd118be1c30ad.tar.xz
kernel-qcow2-linux-9786f6e68af00d0988ad7f51fe3fd118be1c30ad.zip
mtd: ofpart: add ofoldpart alias
ofpart.ko also provides ofoldpart MTD parser. Add respective MODULE_ALIAS("ofoldpart"); declaration. Artem: improve the comment Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Signed-off-by: Artem Bityutskiy <dedekind1@gmail.com>
Diffstat (limited to 'drivers/mtd/ofpart.c')
-rw-r--r--drivers/mtd/ofpart.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/mtd/ofpart.c b/drivers/mtd/ofpart.c
index aa33b8ad4f3c..64be8f0848b0 100644
--- a/drivers/mtd/ofpart.c
+++ b/drivers/mtd/ofpart.c
@@ -176,3 +176,9 @@ module_init(ofpart_parser_init);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Parser for MTD partitioning information in device tree");
MODULE_AUTHOR("Vitaly Wool, David Gibson");
+/*
+ * When MTD core cannot find the requested parser, it tries to load the module
+ * with the same name. Since we provide the ofoldpart parser, we should have
+ * the corresponding alias.
+ */
+MODULE_ALIAS("ofoldpart");