diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:56 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:56 +0200 |
commit | fa21a580dea456c03fcf69203dcd0195df3f7dee (patch) | |
tree | 1ee19579d2a51c15c1d5ab3a7c75d87283f3b37e /drivers/watchdog/davinci_wdt.c | |
parent | ce882ad3c93fc076457ce9b97c19735b52b88c45 (diff) | |
download | linux-fa21a580dea456c03fcf69203dcd0195df3f7dee.tar.gz linux-fa21a580dea456c03fcf69203dcd0195df3f7dee.tar.bz2 linux-fa21a580dea456c03fcf69203dcd0195df3f7dee.zip |
watchdog: 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/watchdog/davinci_wdt.c')
-rw-r--r-- | drivers/watchdog/davinci_wdt.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/watchdog/davinci_wdt.c b/drivers/watchdog/davinci_wdt.c index d09ad2254b57..cfdf8a408aea 100644 --- a/drivers/watchdog/davinci_wdt.c +++ b/drivers/watchdog/davinci_wdt.c @@ -218,7 +218,6 @@ MODULE_DEVICE_TABLE(of, davinci_wdt_of_match); static struct platform_driver platform_wdt_driver = { .driver = { .name = "davinci-wdt", - .owner = THIS_MODULE, .of_match_table = davinci_wdt_of_match, }, .probe = davinci_wdt_probe, |