diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-12-11 21:10:18 -0800 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-12-11 23:45:11 -0800 |
commit | 898d1053f72c192a6e7f701e915995afff695de8 (patch) | |
tree | 33b9a5fa9c3d24133abf422e651f376691e1aa25 /drivers/input/serio/at32psif.c | |
parent | 1f26978afd123deb22dd3c7dc75771a02f6e03f6 (diff) | |
download | linux-898d1053f72c192a6e7f701e915995afff695de8.tar.bz2 |
Input: serio - set owner in driver structures
Setting up owner field ensures that driver core creates symlink from
the driver to a module implementing this driver.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/serio/at32psif.c')
-rw-r--r-- | drivers/input/serio/at32psif.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/serio/at32psif.c b/drivers/input/serio/at32psif.c index a6fb7a3dcc46..50bdc00c49d7 100644 --- a/drivers/input/serio/at32psif.c +++ b/drivers/input/serio/at32psif.c @@ -352,6 +352,7 @@ static struct platform_driver psif_driver = { .remove = __exit_p(psif_remove), .driver = { .name = "atmel_psif", + .owner = THIS_MODULE, }, .suspend = psif_suspend, .resume = psif_resume, |