diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 14:20:17 (GMT) |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 14:20:17 (GMT) |
commit | 65c662ab63d2055d883bc97386aa779cbbb81f93 (patch) | |
tree | 60703d5df2dc9713dd1516f092e71004ead47549 /drivers/ata/pata_palmld.c | |
parent | 7ab6c54b5dc15732bf14c29bb21263efa49704bd (diff) | |
download | linux-65c662ab63d2055d883bc97386aa779cbbb81f93.tar.xz |
ata: 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/ata/pata_palmld.c')
-rw-r--r-- | drivers/ata/pata_palmld.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/ata/pata_palmld.c b/drivers/ata/pata_palmld.c index df2bb75..8c0d7d7 100644 --- a/drivers/ata/pata_palmld.c +++ b/drivers/ata/pata_palmld.c @@ -124,7 +124,6 @@ static int palmld_pata_remove(struct platform_device *dev) static struct platform_driver palmld_pata_platform_driver = { .driver = { .name = DRV_NAME, - .owner = THIS_MODULE, }, .probe = palmld_pata_probe, .remove = palmld_pata_remove, |