From: Srinivas Kandagatla <[email protected]>

This patch uses of_simple_module_id_table macro to replace code like:

        static struct of_device_id xxx_of_match[] = {
                { .compatible = "yyy,zzz" },
                { },
        };
        MODULE_DEVICE_TABLE(of, xxx_of_match);

with
        of_simple_module_id_table(xxx_of_match, "yyy,zzz");

Signed-off-by: Srinivas Kandagatla <[email protected]>
---
 drivers/mmc/host/sdhci-spear.c |    8 +-------
 1 files changed, 1 insertions(+), 7 deletions(-)

diff --git a/drivers/mmc/host/sdhci-spear.c b/drivers/mmc/host/sdhci-spear.c
index 6be89c0..accf4f4 100644
--- a/drivers/mmc/host/sdhci-spear.c
+++ b/drivers/mmc/host/sdhci-spear.c
@@ -320,13 +320,7 @@ static int sdhci_resume(struct device *dev)
 
 static SIMPLE_DEV_PM_OPS(sdhci_pm_ops, sdhci_suspend, sdhci_resume);
 
-#ifdef CONFIG_OF
-static const struct of_device_id sdhci_spear_id_table[] = {
-       { .compatible = "st,spear300-sdhci" },
-       {}
-};
-MODULE_DEVICE_TABLE(of, sdhci_spear_id_table);
-#endif
+of_simple_module_id_table(sdhci_spear_id_table, "st,spear300-sdhci");
 
 static struct platform_driver sdhci_driver = {
        .driver = {
-- 
1.7.0.4

_______________________________________________
devicetree-discuss mailing list
[email protected]
https://lists.ozlabs.org/listinfo/devicetree-discuss

Reply via email to