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/nfc/st-nci | |
parent | ca5d24854210dd02548a080d4271560e926c4fcb (diff) | |
download | linux-3821a065f5672c430a088ae68b4da2a2d2b34106.tar.gz linux-3821a065f5672c430a088ae68b4da2a2d2b34106.tar.bz2 linux-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/nfc/st-nci')
-rw-r--r-- | drivers/nfc/st-nci/spi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/nfc/st-nci/spi.c b/drivers/nfc/st-nci/spi.c index 598a58c4d6d1..2bb5851eef41 100644 --- a/drivers/nfc/st-nci/spi.c +++ b/drivers/nfc/st-nci/spi.c @@ -377,7 +377,6 @@ MODULE_DEVICE_TABLE(of, of_st_nci_spi_match); static struct spi_driver st_nci_spi_driver = { .driver = { - .owner = THIS_MODULE, .name = ST_NCI_SPI_DRIVER_NAME, .of_match_table = of_match_ptr(of_st_nci_spi_match), }, |