diff mbox series

HID: hid-led: fix maximum brightness for Dream Cheeky

Message ID DBAPR04MB7366AA271FE1A1022D96C0BD920E9@DBAPR04MB7366.eurprd04.prod.outlook.com (mailing list archive)
State Mainlined
Commit 116c3f4a78ebe478d5ad5a038baf931e93e7d748
Delegated to: Jiri Kosina
Headers show
Series HID: hid-led: fix maximum brightness for Dream Cheeky | expand

Commit Message

Jonathan Teh March 13, 2022, 7:48 p.m. UTC
Increase maximum brightness for Dream Cheeky to 63. Emperically
determined based on testing in kernel 4.4 on this device:

Bus 003 Device 002: ID 1d34:0004 Dream Cheeky Webmail Notifier

Fixes: 6c7ad07e9e05 ("HID: migrate USB LED driver from usb misc to hid")
Signed-off-by: Jonathan Teh <jonathan.teh@outlook.com>
---
 drivers/hid/hid-led.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jiri Kosina April 21, 2022, 8:29 a.m. UTC | #1
On Sun, 13 Mar 2022, Jonathan Teh wrote:

> Increase maximum brightness for Dream Cheeky to 63. Emperically
> determined based on testing in kernel 4.4 on this device:
> 
> Bus 003 Device 002: ID 1d34:0004 Dream Cheeky Webmail Notifier
> 
> Fixes: 6c7ad07e9e05 ("HID: migrate USB LED driver from usb misc to hid")
> Signed-off-by: Jonathan Teh <jonathan.teh@outlook.com>

Applied, thanks.
diff mbox series

Patch

diff --git a/drivers/hid/hid-led.c b/drivers/hid/hid-led.c
index c2c66ceca132..7d82f8d426bb 100644
--- a/drivers/hid/hid-led.c
+++ b/drivers/hid/hid-led.c
@@ -366,7 +366,7 @@  static const struct hidled_config hidled_configs[] = {
 		.type = DREAM_CHEEKY,
 		.name = "Dream Cheeky Webmail Notifier",
 		.short_name = "dream_cheeky",
-		.max_brightness = 31,
+		.max_brightness = 63,
 		.num_leds = 1,
 		.report_size = 9,
 		.report_type = RAW_REQUEST,