diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:20:56 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:20:56 +0200 |
commit | bb0d20e79490aad989e6c85fedf46781b8d1e3ba (patch) | |
tree | 91417b759dbe11f788ac4cd5f4db3ddd06fa4641 /drivers/mmc/host/davinci_mmc.c | |
parent | 17149e4c863c9696f3ee6fa27954f3087acdefd3 (diff) | |
download | linux-bb0d20e79490aad989e6c85fedf46781b8d1e3ba.tar.gz |
mmc: host: drop owner assignment from platform_drivers
A platform_driver does not need to set an owner, it will be populated by the
driver core.
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/mmc/host/davinci_mmc.c')
-rw-r--r-- | drivers/mmc/host/davinci_mmc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mmc/host/davinci_mmc.c b/drivers/mmc/host/davinci_mmc.c index 5d4c5e0fba2f..1625f908dc70 100644 --- a/drivers/mmc/host/davinci_mmc.c +++ b/drivers/mmc/host/davinci_mmc.c @@ -1466,7 +1466,6 @@ static const struct dev_pm_ops davinci_mmcsd_pm = { static struct platform_driver davinci_mmcsd_driver = { .driver = { .name = "davinci_mmc", - .owner = THIS_MODULE, .pm = davinci_mmcsd_pm_ops, .of_match_table = davinci_mmc_dt_ids, }, |