summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Torokhov2012-03-04 18:26:13 +0100
committerDmitry Torokhov2012-03-04 19:50:24 +0100
commit0c0c440f4d2dcfd7913eb77c43aa292b1b5b8130 (patch)
treeb9bca5189f1ea33271515a3e11a58fab1e87b920
parentInput: add cyttsp touchscreen maintainer entry (diff)
downloadkernel-qcow2-linux-0c0c440f4d2dcfd7913eb77c43aa292b1b5b8130.tar.gz
kernel-qcow2-linux-0c0c440f4d2dcfd7913eb77c43aa292b1b5b8130.tar.xz
kernel-qcow2-linux-0c0c440f4d2dcfd7913eb77c43aa292b1b5b8130.zip
Input: atmel-wm97xx - set driver owner
This allows creating proper sysfs link between driver and its module. Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
-rw-r--r--drivers/input/touchscreen/atmel-wm97xx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/atmel-wm97xx.c b/drivers/input/touchscreen/atmel-wm97xx.c
index d016cb26d125..746bf77d7856 100644
--- a/drivers/input/touchscreen/atmel-wm97xx.c
+++ b/drivers/input/touchscreen/atmel-wm97xx.c
@@ -424,7 +424,8 @@ static int atmel_wm97xx_resume(struct platform_device *pdev)
static struct platform_driver atmel_wm97xx_driver = {
.remove = __exit_p(atmel_wm97xx_remove),
.driver = {
- .name = "wm97xx-touch",
+ .name = "wm97xx-touch",
+ .owner = THIS_MODULE,
},
.suspend = atmel_wm97xx_suspend,
.resume = atmel_wm97xx_resume,