Commit 62844288 authored by Dmitry Torokhov's avatar Dmitry Torokhov

Input: cap11xx - switch to using set_brightness_blocking()

Updating LED state requires access to regmap and therefore we may sleep,
so we could not do that directly form set_brightness() method.
Historically we used private work to adjust the brightness, but with the
introduction of set_brightness_blocking() we no longer need it.

As a bonus, not having our own work item means we do not have
use-after-free issue as we neglected to cancel outstanding work on
driver unbind.
Reported-by: default avatarSven Van Asbroeck <thesven73@gmail.com>
Reviewed-by: default avatarSven Van Asbroeck <TheSven73@googlemail.com>
Acked-by: default avatarJacek Anaszewski <jacek.anaszewski@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent e8b22d0a
...@@ -75,9 +75,7 @@ ...@@ -75,9 +75,7 @@
struct cap11xx_led { struct cap11xx_led {
struct cap11xx_priv *priv; struct cap11xx_priv *priv;
struct led_classdev cdev; struct led_classdev cdev;
struct work_struct work;
u32 reg; u32 reg;
enum led_brightness new_brightness;
}; };
#endif #endif
...@@ -233,30 +231,21 @@ static void cap11xx_input_close(struct input_dev *idev) ...@@ -233,30 +231,21 @@ static void cap11xx_input_close(struct input_dev *idev)
} }
#ifdef CONFIG_LEDS_CLASS #ifdef CONFIG_LEDS_CLASS
static void cap11xx_led_work(struct work_struct *work) static int cap11xx_led_set(struct led_classdev *cdev,
enum led_brightness value)
{ {
struct cap11xx_led *led = container_of(work, struct cap11xx_led, work); struct cap11xx_led *led = container_of(cdev, struct cap11xx_led, cdev);
struct cap11xx_priv *priv = led->priv; struct cap11xx_priv *priv = led->priv;
int value = led->new_brightness;
/* /*
* All LEDs share the same duty cycle as this is a HW limitation. * All LEDs share the same duty cycle as this is a HW
* Brightness levels per LED are either 0 (OFF) and 1 (ON). * limitation. Brightness levels per LED are either
* 0 (OFF) and 1 (ON).
*/ */
regmap_update_bits(priv->regmap, CAP11XX_REG_LED_OUTPUT_CONTROL, return regmap_update_bits(priv->regmap,
BIT(led->reg), value ? BIT(led->reg) : 0); CAP11XX_REG_LED_OUTPUT_CONTROL,
} BIT(led->reg),
value ? BIT(led->reg) : 0);
static void cap11xx_led_set(struct led_classdev *cdev,
enum led_brightness value)
{
struct cap11xx_led *led = container_of(cdev, struct cap11xx_led, cdev);
if (led->new_brightness == value)
return;
led->new_brightness = value;
schedule_work(&led->work);
} }
static int cap11xx_init_leds(struct device *dev, static int cap11xx_init_leds(struct device *dev,
...@@ -299,7 +288,7 @@ static int cap11xx_init_leds(struct device *dev, ...@@ -299,7 +288,7 @@ static int cap11xx_init_leds(struct device *dev,
led->cdev.default_trigger = led->cdev.default_trigger =
of_get_property(child, "linux,default-trigger", NULL); of_get_property(child, "linux,default-trigger", NULL);
led->cdev.flags = 0; led->cdev.flags = 0;
led->cdev.brightness_set = cap11xx_led_set; led->cdev.brightness_set_blocking = cap11xx_led_set;
led->cdev.max_brightness = 1; led->cdev.max_brightness = 1;
led->cdev.brightness = LED_OFF; led->cdev.brightness = LED_OFF;
...@@ -312,8 +301,6 @@ static int cap11xx_init_leds(struct device *dev, ...@@ -312,8 +301,6 @@ static int cap11xx_init_leds(struct device *dev,
led->reg = reg; led->reg = reg;
led->priv = priv; led->priv = priv;
INIT_WORK(&led->work, cap11xx_led_work);
error = devm_led_classdev_register(dev, &led->cdev); error = devm_led_classdev_register(dev, &led->cdev);
if (error) { if (error) {
of_node_put(child); of_node_put(child);
......
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