diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2024-07-11 10:27:16 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2024-08-04 18:10:41 -0700 |
commit | f46b18f36c01ee2c8f52b1adabd5a38202a6089f (patch) | |
tree | 783bd805859c9d7ffd217cf6588599038fdd1fbd /drivers/input/touchscreen | |
parent | d086d6d8036a9551781bf3a3002cfad87a8fda40 (diff) |
Input: tsc2004/5 - respect "wakeup-source" property
Do not mark the device as wakeup-enabled by default, respect the
standard "wakeup-source" property.
Link: https://lore.kernel.org/r/20240711172719.1248373-5-dmitry.torokhov@gmail.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/touchscreen')
-rw-r--r-- | drivers/input/touchscreen/tsc200x-core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/tsc200x-core.c b/drivers/input/touchscreen/tsc200x-core.c index cd60bba11c56..90a4ace22395 100644 --- a/drivers/input/touchscreen/tsc200x-core.c +++ b/drivers/input/touchscreen/tsc200x-core.c @@ -562,7 +562,8 @@ int tsc200x_probe(struct device *dev, int irq, const struct input_id *tsc_id, return error; } - device_init_wakeup(dev, true); + device_init_wakeup(dev, + device_property_read_bool(dev, "wakeup-source")); return 0; } |