lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20171212220143.31210-6-dmurphy@ti.com> Date: Tue, 12 Dec 2017 16:01:42 -0600 From: Dan Murphy <dmurphy@...com> To: <robh+dt@...nel.org>, <mark.rutland@....com>, <rpurdie@...ys.net>, <jacek.anaszewski@...il.com>, <pavel@....cz> CC: <devicetree@...r.kernel.org>, <linux-kernel@...r.kernel.org>, <linux-leds@...r.kernel.org>, Dan Murphy <dmurphy@...com> Subject: [PATCH v4 5/6] leds: lp8860: Add DT parsing to retrieve the trigger node Add the ability to parse the DT and set the default trigger mode for the LED. Signed-off-by: Dan Murphy <dmurphy@...com> --- v4 - No changes v3 - no changes - https://patchwork.kernel.org/patch/10093751/ v2 - no changes drivers/leds/leds-lp8860.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/leds/leds-lp8860.c b/drivers/leds/leds-lp8860.c index 46578fbc36be..bb1d7bbc928c 100644 --- a/drivers/leds/leds-lp8860.c +++ b/drivers/leds/leds-lp8860.c @@ -372,6 +372,10 @@ static int lp8860_probe(struct i2c_client *client, return -ENOMEM; for_each_available_child_of_node(np, child_node) { + led->led_dev.default_trigger = of_get_property(child_node, + "linux,default-trigger", + NULL); + ret = of_property_read_string(child_node, "label", &name); if (!ret) snprintf(led->label, sizeof(led->label), "%s:%s", -- 2.15.0.124.g7668cbc60
Powered by blists - more mailing lists