From: Ezequiel Garcia Date: Tue, 14 May 2013 11:15:23 +0000 (-0300) Subject: mtd: nand: pxa3xx: Fix MODULE_DEVICE_TABLE declaration X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f3958984259f01503ff9629f3564b11bf57a98be;p=linux-beck.git mtd: nand: pxa3xx: Fix MODULE_DEVICE_TABLE declaration This module's device table is incorrectly declared using i2c_pxa_dt_ids, instead of pxa3xx_nand_dt_ids. Signed-off-by: Ezequiel Garcia Tested-by: Nikita Kiryanov Acked-by: Igor Grinberg Reviewed-by: Haojian Zhuang Signed-off-by: Artem Bityutskiy Signed-off-by: David Woodhouse --- diff --git a/drivers/mtd/nand/pxa3xx_nand.c b/drivers/mtd/nand/pxa3xx_nand.c index 8386e9a5ec88..e4e697ff861a 100644 --- a/drivers/mtd/nand/pxa3xx_nand.c +++ b/drivers/mtd/nand/pxa3xx_nand.c @@ -1185,7 +1185,7 @@ static struct of_device_id pxa3xx_nand_dt_ids[] = { { .compatible = "marvell,pxa3xx-nand" }, {} }; -MODULE_DEVICE_TABLE(of, i2c_pxa_dt_ids); +MODULE_DEVICE_TABLE(of, pxa3xx_nand_dt_ids); static int pxa3xx_nand_probe_dt(struct platform_device *pdev) {