diff mbox series

[2/8] Input: st1232 - do not unconditionally configure as wakeup source

Message ID 20191022195622.66976-3-dmitry.torokhov@gmail.com (mailing list archive)
State Mainlined
Commit 16dc7c5c13f1482ac32b8ac7cbc1ad8ab13b0f5d
Headers show
Series Face lift for st1232 touchscreen driver | expand

Commit Message

Dmitry Torokhov Oct. 22, 2019, 7:56 p.m. UTC
Do not unconditionally configure the touchscreen as wakeup source but
rather rely on I2C core to do that when requested (either via
"wakeup-source" device property, or when creating a client with
I2C_CLIENT_WAKE flag).

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---

 drivers/input/touchscreen/st1232.c | 1 -
 1 file changed, 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/input/touchscreen/st1232.c b/drivers/input/touchscreen/st1232.c
index 47033ef3749a..f1b97075aa9b 100644
--- a/drivers/input/touchscreen/st1232.c
+++ b/drivers/input/touchscreen/st1232.c
@@ -266,7 +266,6 @@  static int st1232_ts_probe(struct i2c_client *client,
 	}
 
 	i2c_set_clientdata(client, ts);
-	device_init_wakeup(&client->dev, 1);
 
 	return 0;
 }