All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] Input: tm2-touchkey - use LEN_ON as boolean value instead of LED_FULL
       [not found] <CGME20170601014820epcas1p24563493660adc23d437c55453aa7a655@epcas1p2.samsung.com>
@ 2017-06-01  1:47 ` Andi Shyti
  2017-06-02  5:07   ` Dmitry Torokhov
  0 siblings, 1 reply; 2+ messages in thread
From: Andi Shyti @ 2017-06-01  1:47 UTC (permalink / raw)
  To: Dmitry Torokhov, Jaechul Lee, Beomho Seo
  Cc: linux-input, linux-kernel, Andi Shyti, Andi Shyti

Commit 4e552c8cb5bc ("leds: add LED_ON brightness as boolean value")
has introduced the LED_ON enumeration value that can be used
instead of LED_FULL which has more of a linear value.

Because the tm2-touchscreen doesn't have brightness levels, but
it's a simple on/off led, use LED_ON instead of LED_FULL.

Signed-off-by: Andi Shyti <andi.shyti@samsung.com>
Reviewed-by: Jaechul Lee <jcsing.lee@samsung.com>
Tested-by: Jaechul Lee <jcsing.lee@samsung.com>
---
Hi Dmitry,

this is the second version of this simple patch sent here:

https://marc.info/?l=linux-kernel&m=149062143701658&w=2

no changes, just added Jaechul's review and test.

Andi

 drivers/input/keyboard/tm2-touchkey.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/input/keyboard/tm2-touchkey.c b/drivers/input/keyboard/tm2-touchkey.c
index 485900f953e0..abc266e40e17 100644
--- a/drivers/input/keyboard/tm2-touchkey.c
+++ b/drivers/input/keyboard/tm2-touchkey.c
@@ -213,7 +213,7 @@ static int tm2_touchkey_probe(struct i2c_client *client,
 	/* led device */
 	touchkey->led_dev.name = TM2_TOUCHKEY_DEV_NAME;
 	touchkey->led_dev.brightness = LED_FULL;
-	touchkey->led_dev.max_brightness = LED_FULL;
+	touchkey->led_dev.max_brightness = LED_ON;
 	touchkey->led_dev.brightness_set = tm2_touchkey_led_brightness_set;
 
 	error = devm_led_classdev_register(&client->dev, &touchkey->led_dev);
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] Input: tm2-touchkey - use LEN_ON as boolean value instead of LED_FULL
  2017-06-01  1:47 ` [PATCH v2] Input: tm2-touchkey - use LEN_ON as boolean value instead of LED_FULL Andi Shyti
@ 2017-06-02  5:07   ` Dmitry Torokhov
  0 siblings, 0 replies; 2+ messages in thread
From: Dmitry Torokhov @ 2017-06-02  5:07 UTC (permalink / raw)
  To: Andi Shyti; +Cc: Jaechul Lee, Beomho Seo, linux-input, linux-kernel, Andi Shyti

On Thu, Jun 01, 2017 at 10:47:36AM +0900, Andi Shyti wrote:
> Commit 4e552c8cb5bc ("leds: add LED_ON brightness as boolean value")
> has introduced the LED_ON enumeration value that can be used
> instead of LED_FULL which has more of a linear value.
> 
> Because the tm2-touchscreen doesn't have brightness levels, but
> it's a simple on/off led, use LED_ON instead of LED_FULL.
> 
> Signed-off-by: Andi Shyti <andi.shyti@samsung.com>
> Reviewed-by: Jaechul Lee <jcsing.lee@samsung.com>
> Tested-by: Jaechul Lee <jcsing.lee@samsung.com>

Applied, thank you.

> ---
> Hi Dmitry,
> 
> this is the second version of this simple patch sent here:
> 
> https://marc.info/?l=linux-kernel&m=149062143701658&w=2
> 
> no changes, just added Jaechul's review and test.
> 
> Andi
> 
>  drivers/input/keyboard/tm2-touchkey.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/input/keyboard/tm2-touchkey.c b/drivers/input/keyboard/tm2-touchkey.c
> index 485900f953e0..abc266e40e17 100644
> --- a/drivers/input/keyboard/tm2-touchkey.c
> +++ b/drivers/input/keyboard/tm2-touchkey.c
> @@ -213,7 +213,7 @@ static int tm2_touchkey_probe(struct i2c_client *client,
>  	/* led device */
>  	touchkey->led_dev.name = TM2_TOUCHKEY_DEV_NAME;
>  	touchkey->led_dev.brightness = LED_FULL;
> -	touchkey->led_dev.max_brightness = LED_FULL;
> +	touchkey->led_dev.max_brightness = LED_ON;
>  	touchkey->led_dev.brightness_set = tm2_touchkey_led_brightness_set;
>  
>  	error = devm_led_classdev_register(&client->dev, &touchkey->led_dev);
> -- 
> 2.11.0
> 

-- 
Dmitry

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-06-02  5:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CGME20170601014820epcas1p24563493660adc23d437c55453aa7a655@epcas1p2.samsung.com>
2017-06-01  1:47 ` [PATCH v2] Input: tm2-touchkey - use LEN_ON as boolean value instead of LED_FULL Andi Shyti
2017-06-02  5:07   ` Dmitry Torokhov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.