diff options
author | Andrew F. Davis <afd@ti.com> | 2015-10-23 08:59:11 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-10-28 10:30:17 +0900 |
commit | 3821a065f5672c430a088ae68b4da2a2d2b34106 (patch) | |
tree | 07b51d616ca589f84f5817396c4c2318b6a479a4 /drivers/misc/eeprom | |
parent | ca5d24854210dd02548a080d4271560e926c4fcb (diff) | |
download | linux-stable-3821a065f5672c430a088ae68b4da2a2d2b34106.tar.gz linux-stable-3821a065f5672c430a088ae68b4da2a2d2b34106.tar.bz2 linux-stable-3821a065f5672c430a088ae68b4da2a2d2b34106.zip |
spi: Drop owner assignment from spi_drivers
An spi_driver does not need to set an owner, it will be populated by the
driver core.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Acked-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/misc/eeprom')
-rw-r--r-- | drivers/misc/eeprom/at25.c | 1 | ||||
-rw-r--r-- | drivers/misc/eeprom/eeprom_93xx46.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/misc/eeprom/at25.c b/drivers/misc/eeprom/at25.c index 0a1af93ec638..f850ef556bcc 100644 --- a/drivers/misc/eeprom/at25.c +++ b/drivers/misc/eeprom/at25.c @@ -462,7 +462,6 @@ MODULE_DEVICE_TABLE(of, at25_of_match); static struct spi_driver at25_driver = { .driver = { .name = "at25", - .owner = THIS_MODULE, .of_match_table = at25_of_match, }, .probe = at25_probe, diff --git a/drivers/misc/eeprom/eeprom_93xx46.c b/drivers/misc/eeprom/eeprom_93xx46.c index a6bd9e3fe9d3..ff63f05edc76 100644 --- a/drivers/misc/eeprom/eeprom_93xx46.c +++ b/drivers/misc/eeprom/eeprom_93xx46.c @@ -370,7 +370,6 @@ static int eeprom_93xx46_remove(struct spi_device *spi) static struct spi_driver eeprom_93xx46_driver = { .driver = { .name = "93xx46", - .owner = THIS_MODULE, }, .probe = eeprom_93xx46_probe, .remove = eeprom_93xx46_remove, |