diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:45 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:21:45 +0200 |
commit | 9144b3cded04a05d4b4e18dc9dcfb5b8ada3f2fc (patch) | |
tree | 6c8755563d83523c6f8771bf7198cffa846365ea /drivers/tty/serial/sunzilog.c | |
parent | tty: hvc: drop owner assignment from platform_drivers (diff) | |
download | linux-9144b3cded04a05d4b4e18dc9dcfb5b8ada3f2fc.tar.xz linux-9144b3cded04a05d4b4e18dc9dcfb5b8ada3f2fc.zip |
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/sunzilog.c')
-rw-r--r-- | drivers/tty/serial/sunzilog.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/tty/serial/sunzilog.c b/drivers/tty/serial/sunzilog.c index 02df3940b95e..370546e085d3 100644 --- a/drivers/tty/serial/sunzilog.c +++ b/drivers/tty/serial/sunzilog.c @@ -1533,7 +1533,6 @@ MODULE_DEVICE_TABLE(of, zs_match); static struct platform_driver zs_driver = { .driver = { .name = "zs", - .owner = THIS_MODULE, .of_match_table = zs_match, }, .probe = zs_probe, |