- Apr 17, 2020
-
-
Tomi Valkeinen authored
If devm_led_classdev_register_ext() fails with EPROBE_DEFER, we get: tlc591xx 0-0040: couldn't register LED (null) Only print the error if the error is something else than EPROBE_DEFER. Signed-off-by:
Tomi Valkeinen <tomi.valkeinen@ti.com> Reviewed-by:
Dan Murphy <dmurphy@ti.com> Signed-off-by:
Pavel Machek <pavel@ucw.cz>
-
- Nov 03, 2019
-
-
Jean-Jacques Hiblot authored
The TLC chips actually offer 257 levels: - 0: led OFF - 1-255: Led dimmed is using a PWM. The duty cycle range from 0.4% to 99.6% - 256: led fully ON Fixes: e370d010 ("leds: tlc591xx: Driver for the TI 8/16 Channel i2c LED driver") Signed-off-by:
Jean-Jacques Hiblot <jjhiblot@ti.com> Signed-off-by:
Pavel Machek <pavel@ucw.cz>
-
Jean-Jacques Hiblot authored
Use devm_led_classdev_register_ext() to pass the fwnode to the LED core. The fwnode can then be used by the firmware core to create meaningful names. Signed-off-by:
Jean-Jacques Hiblot <jjhiblot@ti.com> Signed-off-by:
Pavel Machek <pavel@ucw.cz>
-
Jean-Jacques Hiblot authored
Use the managed API of the LED class (devm_led_classdev_register() instead of led_classdev_register()). This allows us to remove the code used to track-and-destroy the LED devices. Signed-off-by:
Jean-Jacques Hiblot <jjhiblot@ti.com> Reviewed-by:
Tomi Valkeinen <tomi.valkeinen@ti.com> Signed-off-by:
Pavel Machek <pavel@ucw.cz>
-
Daniel Mack authored
The driver currently ignores errors from register writes at probe time. It will hence register an LED class device no matter whether the pyhsical device is present or not. To fix this, make the device probe fail in case regmap operations return an error. Signed-off-by:
Daniel Mack <daniel@zonque.org> Signed-off-by:
Pavel Machek <pavel@ucw.cz>
-
- Jun 05, 2019
-
-
Thomas Gleixner authored
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation version 2 of the license extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 315 file(s). Signed-off-by:
Thomas Gleixner <tglx@linutronix.de> Reviewed-by:
Allison Randal <allison@lohutok.net> Reviewed-by:
Armijn Hemel <armijn@tjaldur.nl> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190531190115.503150771@linutronix.de Signed-off-by:
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-
- Jul 16, 2017
-
-
Julia Lawall authored
for_each_child_of_node performs an of_node_get on each iteration, so a return from the loop requires an of_node_put. The semantic patch that fixes this problem is as follows (http://coccinelle.lip6.fr ): // <smpl> @@ local idexpression n; expression e,e1; iterator name for_each_child_of_node; @@ for_each_child_of_node(e1,n) { ... ( of_node_put(n); | e = n | return n; | + of_node_put(n); ? return ...; ) ... } // </smpl> Signed-off-by:
Julia Lawall <Julia.Lawall@lip6.fr> Acked-by:
Pavel Machek <pavel@ucw.cz> Signed-off-by:
Jacek Anaszewski <jacek.anaszewski@gmail.com>
-
Julia Lawall authored
Merge conditionals that have the same then branch, to prepare for extending that branch with of_node_put. Signed-off-by:
Julia Lawall <Julia.Lawall@lip6.fr> Acked-by:
Pavel Machek <pavel@ucw.cz> Signed-off-by:
Jacek Anaszewski <jacek.anaszewski@gmail.com>
-
- Jan 04, 2016
-
-
Andrew Lunn authored
Now the core implements the work queue, remove it from the driver, and switch to using brightness_set_blocking op. Signed-off-by:
Andrew Lunn <andrew@lunn.ch> Signed-off-by:
Jacek Anaszewski <j.anaszewski@samsung.com>
-
- Aug 28, 2015
-
-
Axel Lin authored
This checking is done by regmap_get_i2c_bus() which is called in devm_regmap_init_i2c(). Signed-off-by:
Axel Lin <axel.lin@ingics.com> Reviewed-by:
Andrew Lunn <andrew@lunn.ch> Signed-off-by:
Jacek Anaszewski <j.anaszewski@samsung.com>
-
- May 04, 2015
-
-
Andrew Lunn authored
The TLC59116 is an I2C bus controlled 16-channel LED driver. The TLC59108 is an I2C bus controlled 8-channel LED driver, which is very similar to the TLC59116. Each LED output has its own 8-bit fixed-frequency PWM controller to control the brightness of the LED. The LEDs can also be fixed off and on, making them suitable for use as GPOs. This is based on a driver from Belkin, but has been extensively rewritten and extended to support both 08 and 16 versions. Signed-off-by:
Andrew Lunn <andrew@lunn.ch> Tested-by:
Imre Kaloz <kaloz@openwrt.org> Cc: Matthew.Fatheree@belkin.com Acked-by:
Jacek Anaszewski <j.anaszewski@samsung.com> Signed-off-by:
Bryan Wu <cooloney@gmail.com>
-