diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 18:21:44 +0400 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 18:21:44 +0400 |
commit | 3aa5fed2564fd7a18f6f6ab4fd1a50538ebb70e9 (patch) | |
tree | f12efe800bdbcaad5e5173fe75a36c4c3738f673 /drivers/tty/hvc/hvc_opal.c | |
parent | c910367fed9fc73368d0deb7898c5ceef31e5d8f (diff) | |
download | linux-3aa5fed2564fd7a18f6f6ab4fd1a50538ebb70e9.tar.xz |
tty: hvc: 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/hvc/hvc_opal.c')
-rw-r--r-- | drivers/tty/hvc/hvc_opal.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/tty/hvc/hvc_opal.c b/drivers/tty/hvc/hvc_opal.c index a2cc5f834c63..071551bf3e9a 100644 --- a/drivers/tty/hvc/hvc_opal.c +++ b/drivers/tty/hvc/hvc_opal.c @@ -262,7 +262,6 @@ static struct platform_driver hvc_opal_driver = { .remove = hvc_opal_remove, .driver = { .name = hvc_opal_name, - .owner = THIS_MODULE, .of_match_table = hvc_opal_match, } }; |