diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:33 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:33 +0200 |
commit | b36069c833d9440774d5daab143ec15ea026f34a (patch) | |
tree | 25b65cc562c80cf0a03bb17a85687cf4a2087a54 /drivers/scsi/bvme6000_scsi.c | |
parent | 7cafb31ca4e85fa4c522cecf917e86e258cfbcaa (diff) | |
download | linux-b36069c833d9440774d5daab143ec15ea026f34a.tar.gz linux-b36069c833d9440774d5daab143ec15ea026f34a.tar.bz2 linux-b36069c833d9440774d5daab143ec15ea026f34a.zip |
scsi: 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/scsi/bvme6000_scsi.c')
-rw-r--r-- | drivers/scsi/bvme6000_scsi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/scsi/bvme6000_scsi.c b/drivers/scsi/bvme6000_scsi.c index 1e3f96adf9da..0f846ae2f918 100644 --- a/drivers/scsi/bvme6000_scsi.c +++ b/drivers/scsi/bvme6000_scsi.c @@ -105,7 +105,6 @@ bvme6000_device_remove(struct platform_device *dev) static struct platform_driver bvme6000_scsi_driver = { .driver = { .name = "bvme6000-scsi", - .owner = THIS_MODULE, }, .probe = bvme6000_probe, .remove = bvme6000_device_remove, |