Commit def56bba authored by Shawn Guo's avatar Shawn Guo

input: snvs_pwrkey: use "wakeup-source" as deivce tree property name

Instead of inventing a new property name, let's use "wakeup-source" to
be consistent with other driver and subsystem bindings.
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
Acked-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent cc28791d
...@@ -408,7 +408,7 @@ System ON/OFF key driver ...@@ -408,7 +408,7 @@ System ON/OFF key driver
Value type: <int> Value type: <int>
Definition: Keycode to emit, KEY_POWER by default. Definition: Keycode to emit, KEY_POWER by default.
- wakeup: - wakeup-source:
Usage: option Usage: option
Value type: <boo> Value type: <boo>
Definition: Button can wake-up the system. Definition: Button can wake-up the system.
......
...@@ -122,7 +122,7 @@ static int imx_snvs_pwrkey_probe(struct platform_device *pdev) ...@@ -122,7 +122,7 @@ static int imx_snvs_pwrkey_probe(struct platform_device *pdev)
dev_warn(&pdev->dev, "KEY_POWER without setting in dts\n"); dev_warn(&pdev->dev, "KEY_POWER without setting in dts\n");
} }
pdata->wakeup = of_property_read_bool(np, "wakeup"); pdata->wakeup = of_property_read_bool(np, "wakeup-source");
pdata->irq = platform_get_irq(pdev, 0); pdata->irq = platform_get_irq(pdev, 0);
if (pdata->irq < 0) { if (pdata->irq < 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment