summaryrefslogtreecommitdiff
path: root/drivers/input/touchscreen
diff options
context:
space:
mode:
authorShantanu Jain <shjain@codeaurora.org>2013-11-13 21:38:23 +0530
committerGerrit - the friendly Code Review server <code-review@localhost>2016-09-22 22:24:58 -0700
commit18850432fdce433c55bd1a2f1ce3cc423552cbfd (patch)
tree4ae92c21cc8a34f3d2ffb3b1a8248981d617967b /drivers/input/touchscreen
parent3f4d270af7568ad52a07f7c5c1a912830358089c (diff)
input: touchscreen: Change late_init call to module_init
Change late_initcall usage in goodix driver to module_init. Change-Id: I59681138448584fc7a04c95dc8af3d4c3d395ff0 Signed-off-by: Shantanu Jain <shjain@codeaurora.org>
Diffstat (limited to 'drivers/input/touchscreen')
-rw-r--r--drivers/input/touchscreen/gt9xx/gt9xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/gt9xx/gt9xx.c b/drivers/input/touchscreen/gt9xx/gt9xx.c
index cf9f5cde14cc..1522093bd882 100644
--- a/drivers/input/touchscreen/gt9xx/gt9xx.c
+++ b/drivers/input/touchscreen/gt9xx/gt9xx.c
@@ -2287,7 +2287,7 @@ static void __exit goodix_ts_exit(void)
i2c_del_driver(&goodix_ts_driver);
}
-late_initcall(goodix_ts_init);
+module_init(goodix_ts_init);
module_exit(goodix_ts_exit);
MODULE_DESCRIPTION("GTP Series Driver");