diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:20:41 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:20:41 +0200 |
commit | 947a0687d19f7bc589183f1f0e2ca46e59cf8310 (patch) | |
tree | f995f9103b9214079354ec7f9954338faf9de327 /drivers/input/serio/xilinx_ps2.c | |
parent | input: mouse: drop owner assignment from platform_drivers (diff) | |
download | linux-947a0687d19f7bc589183f1f0e2ca46e59cf8310.tar.xz linux-947a0687d19f7bc589183f1f0e2ca46e59cf8310.zip |
input: serio: 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/input/serio/xilinx_ps2.c')
-rw-r--r-- | drivers/input/serio/xilinx_ps2.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/input/serio/xilinx_ps2.c b/drivers/input/serio/xilinx_ps2.c index e6cf52ebad87..5223cbf94262 100644 --- a/drivers/input/serio/xilinx_ps2.c +++ b/drivers/input/serio/xilinx_ps2.c @@ -363,7 +363,6 @@ MODULE_DEVICE_TABLE(of, xps2_of_match); static struct platform_driver xps2_of_driver = { .driver = { .name = DRIVER_NAME, - .owner = THIS_MODULE, .of_match_table = xps2_of_match, }, .probe = xps2_of_probe, |