Message ID | 20230118234638.189098-2-soyer@irl.hu (mailing list archive) |
---|---|
State | Mainlined |
Commit | 4b665e1781e2cd64b3b9492e49156925ba02bfa9 |
Headers | show |
Series | Add tri-state-key for oneplus | expand |
diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c index 5496482a38c1..c42f86ad0766 100644 --- a/drivers/input/keyboard/gpio_keys.c +++ b/drivers/input/keyboard/gpio_keys.c @@ -770,6 +770,9 @@ gpio_keys_get_devtree_pdata(struct device *dev) &button->type)) button->type = EV_KEY; + fwnode_property_read_u32(child, "linux,input-value", + (u32 *)&button->value); + button->wakeup = fwnode_property_read_bool(child, "wakeup-source") || /* legacy name */
Allows setting the value of EV_ABS events from dts. This property is included in the gpio-keys.yaml scheme, but was only implemented for gpio-keys-polled. Signed-off-by: Gergo Koteles <soyer@irl.hu> --- drivers/input/keyboard/gpio_keys.c | 3 +++ 1 file changed, 3 insertions(+)