mtd: nand: tango: Export OF device ID table as module aliases

Linux-MTD Mailing List linux-mtd at lists.infradead.org
Thu Jun 1 11:59:01 PDT 2017


Gitweb:     http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=2761b4f12b017f6d3e5add386733a700a490df47
Commit:     2761b4f12b017f6d3e5add386733a700a490df47
Parent:     d24197907454b902908e025bce4b8bc677d3ba6b
Author:     Andres Galacho <andresgalacho at gmail.com>
AuthorDate: Mon May 1 16:30:15 2017 -0400
Committer:  Boris Brezillon <boris.brezillon at free-electrons.com>
CommitDate: Mon May 22 09:42:29 2017 +0200

    mtd: nand: tango: Export OF device ID table as module aliases
    
    The device table is required to load modules based on
    modaliases. After adding MODULE_DEVICE_TABLE, below entries
    for example will be added to module.alias:
    alias:          of:N*T*Csigma,smp8758-nandC*
    alias:          of:N*T*Csigma,smp8758-nand
    
    Fixes: 6956e2385a16 ("mtd: nand: add tango NAND flash controller support")
    Cc: stable at vger.kernel.org
    Signed-off-by: Andres Galacho <andresgalacho at gmail.com>
    Acked-by: Brian Norris <computersforpeace at gmail.com>
    Signed-off-by: Boris Brezillon <boris.brezillon at free-electrons.com>
---
 drivers/mtd/nand/tango_nand.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mtd/nand/tango_nand.c b/drivers/mtd/nand/tango_nand.c
index 05b6e10..82fea9b 100644
--- a/drivers/mtd/nand/tango_nand.c
+++ b/drivers/mtd/nand/tango_nand.c
@@ -663,6 +663,7 @@ static const struct of_device_id tango_nand_ids[] = {
 	{ .compatible = "sigma,smp8758-nand" },
 	{ /* sentinel */ }
 };
+MODULE_DEVICE_TABLE(of, tango_nand_ids);
 
 static struct platform_driver tango_nand_driver = {
 	.probe	= tango_nand_probe,



More information about the linux-mtd-cvs mailing list