diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 18:21:45 +0400 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 18:21:45 +0400 |
commit | 9144b3cded04a05d4b4e18dc9dcfb5b8ada3f2fc (patch) | |
tree | 6c8755563d83523c6f8771bf7198cffa846365ea /drivers/tty/serial/pnx8xxx_uart.c | |
parent | 3aa5fed2564fd7a18f6f6ab4fd1a50538ebb70e9 (diff) | |
download | linux-9144b3cded04a05d4b4e18dc9dcfb5b8ada3f2fc.tar.xz |
tty: serial: 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/tty/serial/pnx8xxx_uart.c')
-rw-r--r-- | drivers/tty/serial/pnx8xxx_uart.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/tty/serial/pnx8xxx_uart.c b/drivers/tty/serial/pnx8xxx_uart.c index 2ba24a45c97f..928cc113c773 100644 --- a/drivers/tty/serial/pnx8xxx_uart.c +++ b/drivers/tty/serial/pnx8xxx_uart.c @@ -813,7 +813,6 @@ static int pnx8xxx_serial_remove(struct platform_device *pdev) static struct platform_driver pnx8xxx_serial_driver = { .driver = { .name = "pnx8xxx-uart", - .owner = THIS_MODULE, }, .probe = pnx8xxx_serial_probe, .remove = pnx8xxx_serial_remove, |