OSDN Git Service

mmc: remove .owner field for drivers using module_platform_driver
authorPeter Griffin <peter.griffin@linaro.org>
Tue, 12 Aug 2014 16:14:25 +0000 (17:14 +0100)
committerUlf Hansson <ulf.hansson@linaro.org>
Tue, 9 Sep 2014 11:59:04 +0000 (13:59 +0200)
This patch removes the superflous .owner field for drivers which
use the module_platform_driver API, as this is overriden in
platform_driver_register anyway.

Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
28 files changed:
drivers/mmc/host/jz4740_mmc.c
drivers/mmc/host/moxart-mmc.c
drivers/mmc/host/mxcmmc.c
drivers/mmc/host/mxs-mmc.c
drivers/mmc/host/omap.c
drivers/mmc/host/omap_hsmmc.c
drivers/mmc/host/pxamci.c
drivers/mmc/host/rtsx_pci_sdmmc.c
drivers/mmc/host/rtsx_usb_sdmmc.c
drivers/mmc/host/s3cmci.c
drivers/mmc/host/sdhci-bcm-kona.c
drivers/mmc/host/sdhci-bcm2835.c
drivers/mmc/host/sdhci-cns3xxx.c
drivers/mmc/host/sdhci-dove.c
drivers/mmc/host/sdhci-esdhc-imx.c
drivers/mmc/host/sdhci-msm.c
drivers/mmc/host/sdhci-of-arasan.c
drivers/mmc/host/sdhci-of-esdhc.c
drivers/mmc/host/sdhci-of-hlwd.c
drivers/mmc/host/sdhci-pxav2.c
drivers/mmc/host/sdhci-pxav3.c
drivers/mmc/host/sdhci-s3c.c
drivers/mmc/host/sdhci-sirf.c
drivers/mmc/host/sdhci-spear.c
drivers/mmc/host/sdhci-tegra.c
drivers/mmc/host/sh_mmcif.c
drivers/mmc/host/sh_mobile_sdhi.c
drivers/mmc/host/sunxi-mmc.c

index 14738cd..76e8bce 100644 (file)
@@ -1161,7 +1161,6 @@ static struct platform_driver jz4740_mmc_driver = {
        .remove = jz4740_mmc_remove,
        .driver = {
                .name = "jz4740-mmc",
-               .owner = THIS_MODULE,
                .pm = JZ4740_MMC_PM_OPS,
        },
 };
index b4b1efb..f3e18d0 100644 (file)
@@ -717,7 +717,6 @@ static struct platform_driver moxart_mmc_driver = {
        .remove     = moxart_remove,
        .driver     = {
                .name           = "mmc-moxart",
-               .owner          = THIS_MODULE,
                .of_match_table = moxart_mmc_match,
        },
 };
index ed1cb93..ad11142 100644 (file)
@@ -1238,7 +1238,6 @@ static struct platform_driver mxcmci_driver = {
        .id_table       = mxcmci_devtype,
        .driver         = {
                .name           = DRIVER_NAME,
-               .owner          = THIS_MODULE,
                .pm     = &mxcmci_pm_ops,
                .of_match_table = mxcmci_of_match,
        }
index 140885a..cd74e51 100644 (file)
@@ -735,7 +735,6 @@ static struct platform_driver mxs_mmc_driver = {
        .id_table       = mxs_ssp_ids,
        .driver         = {
                .name   = DRIVER_NAME,
-               .owner  = THIS_MODULE,
 #ifdef CONFIG_PM
                .pm     = &mxs_mmc_pm_ops,
 #endif
index 81974ec..68dd6c7 100644 (file)
@@ -1494,7 +1494,6 @@ static struct platform_driver mmc_omap_driver = {
        .remove         = mmc_omap_remove,
        .driver         = {
                .name   = DRIVER_NAME,
-               .owner  = THIS_MODULE,
                .of_match_table = of_match_ptr(mmc_omap_match),
        },
 };
index 9656726..ece1634 100644 (file)
@@ -2489,7 +2489,6 @@ static struct platform_driver omap_hsmmc_driver = {
        .remove         = omap_hsmmc_remove,
        .driver         = {
                .name = DRIVER_NAME,
-               .owner = THIS_MODULE,
                .pm = &omap_hsmmc_dev_pm_ops,
                .of_match_table = of_match_ptr(omap_mmc_of_match),
        },
index 32fe113..0971a23 100644 (file)
@@ -885,7 +885,6 @@ static struct platform_driver pxamci_driver = {
        .remove         = pxamci_remove,
        .driver         = {
                .name   = DRIVER_NAME,
-               .owner  = THIS_MODULE,
                .of_match_table = of_match_ptr(pxa_mmc_dt_ids),
        },
 };
index b2537e2..d928216 100644 (file)
@@ -1423,7 +1423,6 @@ static struct platform_driver rtsx_pci_sdmmc_driver = {
        .remove         = rtsx_pci_sdmmc_drv_remove,
        .id_table       = rtsx_pci_sdmmc_ids,
        .driver         = {
-               .owner  = THIS_MODULE,
                .name   = DRV_NAME_RTSX_PCI_SDMMC,
        },
 };
index d9153a7..e46c574 100644 (file)
@@ -1452,7 +1452,6 @@ static struct platform_driver rtsx_usb_sdmmc_driver = {
        .remove         = rtsx_usb_sdmmc_drv_remove,
        .id_table       = rtsx_usb_sdmmc_ids,
        .driver         = {
-               .owner  = THIS_MODULE,
                .name   = "rtsx_usb_sdmmc",
        },
 };
index e5516a2..e4e1a53 100644 (file)
@@ -1874,7 +1874,6 @@ MODULE_DEVICE_TABLE(platform, s3cmci_driver_ids);
 static struct platform_driver s3cmci_driver = {
        .driver = {
                .name   = "s3c-sdi",
-               .owner  = THIS_MODULE,
        },
        .id_table       = s3cmci_driver_ids,
        .probe          = s3cmci_probe,
index dd780c3..2245988 100644 (file)
@@ -359,7 +359,6 @@ static int sdhci_bcm_kona_remove(struct platform_device *pdev)
 static struct platform_driver sdhci_bcm_kona_driver = {
        .driver         = {
                .name   = "sdhci-kona",
-               .owner  = THIS_MODULE,
                .pm     = SDHCI_PLTFM_PMOPS,
                .of_match_table = sdhci_bcm_kona_of_match,
        },
index 46af9a4..439d259 100644 (file)
@@ -194,7 +194,6 @@ MODULE_DEVICE_TABLE(of, bcm2835_sdhci_of_match);
 static struct platform_driver bcm2835_sdhci_driver = {
        .driver = {
                .name = "sdhci-bcm2835",
-               .owner = THIS_MODULE,
                .of_match_table = bcm2835_sdhci_of_match,
                .pm = SDHCI_PLTFM_PMOPS,
        },
index 14b7407..a7935a8 100644 (file)
@@ -106,7 +106,6 @@ static int sdhci_cns3xxx_remove(struct platform_device *pdev)
 static struct platform_driver sdhci_cns3xxx_driver = {
        .driver         = {
                .name   = "sdhci-cns3xxx",
-               .owner  = THIS_MODULE,
                .pm     = SDHCI_PLTFM_PMOPS,
        },
        .probe          = sdhci_cns3xxx_probe,
index e6278ec..ca969d2 100644 (file)
@@ -146,7 +146,6 @@ MODULE_DEVICE_TABLE(of, sdhci_dove_of_match_table);
 static struct platform_driver sdhci_dove_driver = {
        .driver         = {
                .name   = "sdhci-dove",
-               .owner  = THIS_MODULE,
                .pm     = SDHCI_PLTFM_PMOPS,
                .of_match_table = sdhci_dove_of_match_table,
        },
index ccec0e3..46677f0 100644 (file)
@@ -1207,7 +1207,6 @@ static const struct dev_pm_ops sdhci_esdhc_pmops = {
 static struct platform_driver sdhci_esdhc_imx_driver = {
        .driver         = {
                .name   = "sdhci-esdhc-imx",
-               .owner  = THIS_MODULE,
                .of_match_table = imx_esdhc_dt_ids,
                .pm     = &sdhci_esdhc_pmops,
        },
index 1a6661e..2f19eab 100644 (file)
@@ -610,7 +610,6 @@ static struct platform_driver sdhci_msm_driver = {
        .remove = sdhci_msm_remove,
        .driver = {
                   .name = "sdhci_msm",
-                  .owner = THIS_MODULE,
                   .of_match_table = sdhci_msm_dt_match,
        },
 };
index 5bd1092..981d66e 100644 (file)
@@ -213,7 +213,6 @@ MODULE_DEVICE_TABLE(of, sdhci_arasan_of_match);
 static struct platform_driver sdhci_arasan_driver = {
        .driver = {
                .name = "sdhci-arasan",
-               .owner = THIS_MODULE,
                .of_match_table = sdhci_arasan_of_match,
                .pm = &sdhci_arasan_dev_pm_ops,
        },
index 8be4dcf..8872c85 100644 (file)
@@ -388,7 +388,6 @@ MODULE_DEVICE_TABLE(of, sdhci_esdhc_of_match);
 static struct platform_driver sdhci_esdhc_driver = {
        .driver = {
                .name = "sdhci-esdhc",
-               .owner = THIS_MODULE,
                .of_match_table = sdhci_esdhc_of_match,
                .pm = ESDHC_PMOPS,
        },
index b341661..be47927 100644 (file)
@@ -89,7 +89,6 @@ MODULE_DEVICE_TABLE(of, sdhci_hlwd_of_match);
 static struct platform_driver sdhci_hlwd_driver = {
        .driver = {
                .name = "sdhci-hlwd",
-               .owner = THIS_MODULE,
                .of_match_table = sdhci_hlwd_of_match,
                .pm = SDHCI_PLTFM_PMOPS,
        },
index 3c0f3c0..b4c23e9 100644 (file)
@@ -261,7 +261,6 @@ static int sdhci_pxav2_remove(struct platform_device *pdev)
 static struct platform_driver sdhci_pxav2_driver = {
        .driver         = {
                .name   = "sdhci-pxav2",
-               .owner  = THIS_MODULE,
 #ifdef CONFIG_OF
                .of_match_table = sdhci_pxav2_of_match,
 #endif
index 6f842fb..cca08b0 100644 (file)
@@ -492,7 +492,6 @@ static struct platform_driver sdhci_pxav3_driver = {
 #ifdef CONFIG_OF
                .of_match_table = sdhci_pxav3_of_match,
 #endif
-               .owner  = THIS_MODULE,
                .pm     = SDHCI_PXAV3_PMOPS,
        },
        .probe          = sdhci_pxav3_probe,
index 1e47903..0ce6eb1 100644 (file)
@@ -747,7 +747,6 @@ static struct platform_driver sdhci_s3c_driver = {
        .remove         = sdhci_s3c_remove,
        .id_table       = sdhci_s3c_driver_ids,
        .driver         = {
-               .owner  = THIS_MODULE,
                .name   = "s3c-sdhci",
                .of_match_table = of_match_ptr(sdhci_s3c_dt_match),
                .pm     = SDHCI_S3C_PMOPS,
index 1700453..e15dc89 100644 (file)
@@ -167,7 +167,6 @@ MODULE_DEVICE_TABLE(of, sdhci_sirf_of_match);
 static struct platform_driver sdhci_sirf_driver = {
        .driver         = {
                .name   = "sdhci-sirf",
-               .owner  = THIS_MODULE,
                .of_match_table = sdhci_sirf_of_match,
 #ifdef CONFIG_PM_SLEEP
                .pm     = &sdhci_sirf_pm_ops,
index 9d535c7..22e5826 100644 (file)
@@ -230,7 +230,6 @@ MODULE_DEVICE_TABLE(of, sdhci_spear_id_table);
 static struct platform_driver sdhci_driver = {
        .driver = {
                .name   = "sdhci",
-               .owner  = THIS_MODULE,
                .pm     = &sdhci_pm_ops,
                .of_match_table = of_match_ptr(sdhci_spear_id_table),
        },
index 33100d1..5979710 100644 (file)
@@ -318,7 +318,6 @@ static int sdhci_tegra_remove(struct platform_device *pdev)
 static struct platform_driver sdhci_tegra_driver = {
        .driver         = {
                .name   = "sdhci-tegra",
-               .owner  = THIS_MODULE,
                .of_match_table = sdhci_tegra_dt_match,
                .pm     = SDHCI_PLTFM_PMOPS,
        },
index d11708c..7d9d6a3 100644 (file)
@@ -1553,7 +1553,6 @@ static struct platform_driver sh_mmcif_driver = {
        .driver         = {
                .name   = DRIVER_NAME,
                .pm     = &sh_mmcif_dev_pm_ops,
-               .owner  = THIS_MODULE,
                .of_match_table = mmcif_of_match,
        },
 };
index 91058da..be5e25d 100644 (file)
@@ -341,7 +341,6 @@ static const struct dev_pm_ops tmio_mmc_dev_pm_ops = {
 static struct platform_driver sh_mobile_sdhi_driver = {
        .driver         = {
                .name   = "sh_mobile_sdhi",
-               .owner  = THIS_MODULE,
                .pm     = &tmio_mmc_dev_pm_ops,
                .of_match_table = sh_mobile_sdhi_of_match,
        },
index 024f67c..dafe500 100644 (file)
@@ -1035,7 +1035,6 @@ static int sunxi_mmc_remove(struct platform_device *pdev)
 static struct platform_driver sunxi_mmc_driver = {
        .driver = {
                .name   = "sunxi-mmc",
-               .owner  = THIS_MODULE,
                .of_match_table = of_match_ptr(sunxi_mmc_of_match),
        },
        .probe          = sunxi_mmc_probe,