diff options
author | Andrew F. Davis <afd@ti.com> | 2015-10-23 15:59:11 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-10-28 02:30:17 +0100 |
commit | 3821a065f5672c430a088ae68b4da2a2d2b34106 (patch) | |
tree | 07b51d616ca589f84f5817396c4c2318b6a479a4 /drivers/tty/serial/max310x.c | |
parent | spi: Add THIS_MODULE to spi_driver in SPI core (diff) | |
download | linux-3821a065f5672c430a088ae68b4da2a2d2b34106.tar.xz 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/tty/serial/max310x.c')
-rw-r--r-- | drivers/tty/serial/max310x.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/tty/serial/max310x.c b/drivers/tty/serial/max310x.c index 182549f55904..d45133056f51 100644 --- a/drivers/tty/serial/max310x.c +++ b/drivers/tty/serial/max310x.c @@ -1338,7 +1338,6 @@ MODULE_DEVICE_TABLE(spi, max310x_id_table); static struct spi_driver max310x_uart_driver = { .driver = { .name = MAX310X_NAME, - .owner = THIS_MODULE, .of_match_table = of_match_ptr(max310x_dt_ids), .pm = &max310x_pm_ops, }, |