diff options
author | Peter Griffin <peter.griffin@linaro.org> | 2014-08-12 12:14:25 -0400 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2014-09-09 07:59:04 -0400 |
commit | 2137f5d3b8e8e04cff06194cacd0f6357495ac94 (patch) | |
tree | 337db4be26a9f57e77f6895cb01a47c72f129a04 /drivers/mmc/host/sdhci-spear.c | |
parent | dea67c4ec8218b301d7cac7ee6e63dac0bc566cb (diff) |
mmc: remove .owner field for drivers using module_platform_driver
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>
Diffstat (limited to 'drivers/mmc/host/sdhci-spear.c')
-rw-r--r-- | drivers/mmc/host/sdhci-spear.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-spear.c b/drivers/mmc/host/sdhci-spear.c index 9d535c7336ef..22e58268545f 100644 --- a/drivers/mmc/host/sdhci-spear.c +++ b/drivers/mmc/host/sdhci-spear.c | |||
@@ -230,7 +230,6 @@ MODULE_DEVICE_TABLE(of, sdhci_spear_id_table); | |||
230 | static struct platform_driver sdhci_driver = { | 230 | static struct platform_driver sdhci_driver = { |
231 | .driver = { | 231 | .driver = { |
232 | .name = "sdhci", | 232 | .name = "sdhci", |
233 | .owner = THIS_MODULE, | ||
234 | .pm = &sdhci_pm_ops, | 233 | .pm = &sdhci_pm_ops, |
235 | .of_match_table = of_match_ptr(sdhci_spear_id_table), | 234 | .of_match_table = of_match_ptr(sdhci_spear_id_table), |
236 | }, | 235 | }, |