4.11-stable review patch. If anyone has any objections, please let me know.
------------------ From: Andres Galacho <[email protected]> commit 2761b4f12b017f6d3e5add386733a700a490df47 upstream. 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") Signed-off-by: Andres Galacho <[email protected]> Acked-by: Brian Norris <[email protected]> Signed-off-by: Boris Brezillon <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> --- drivers/mtd/nand/tango_nand.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/mtd/nand/tango_nand.c +++ b/drivers/mtd/nand/tango_nand.c @@ -661,6 +661,7 @@ static const struct of_device_id tango_n { .compatible = "sigma,smp8758-nand" }, { /* sentinel */ } }; +MODULE_DEVICE_TABLE(of, tango_nand_ids); static struct platform_driver tango_nand_driver = { .probe = tango_nand_probe,

