From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Carlos Ferreira <carlosmiguelferreira.2003@gmail.com>
Cc: mustafa.eskieksi@gmail.com, Hans de Goede <hdegoede@redhat.com>,
platform-driver-x86@vger.kernel.org,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v4 1/2] HP: wmi: added support for 4 zone keyboard rgb
Date: Mon, 12 Aug 2024 18:57:31 +0300 (EEST) [thread overview]
Message-ID: <121c2aa1-c89b-49bc-c71e-73009b4e04fe@linux.intel.com> (raw)
In-Reply-To: <8e06b567-8471-4109-bab1-f44a8d9780da@redhat.com>
On Mon, 12 Aug 2024, Hans de Goede wrote:
> Hi,
>
> Thank you for the new version, much better, almost there I would say.
>
> On 7/19/24 11:59 AM, Carlos Ferreira wrote:
> > This driver adds supports for 4 zone keyboard rgb on omen laptops
> > using the multicolor led api.
> >
> > Tested on the HP Omen 15-en1001np.
> >
> > Signed-off-by: Carlos Ferreira <carlosmiguelferreira.2003@gmail.com>
> > +static int __init fourzone_leds_init(struct platform_device *device)
> > +{
> > + enum led_brightness hw_brightness;
> > + u32 colors[KBD_ZONE_COUNT * 3];
> > + int ret, i, j;
> > +
> > + ret = fourzone_get_hw_colors(colors);
> > + if (ret < 0)
> > + return ret;
> > +
> > + hw_brightness = fourzone_get_hw_brightness();
> > +
> > + for (i = 0; i < KBD_ZONE_COUNT; i++) {
> > + for (j = 0; j < 3; j++)
> > + fourzone_leds[i].subleds[j] = (struct mc_subled) {
> > + .color_index = j + 1,
> > + .brightness = hw_brightness ? colors[i * 3 + j] : 0,
>
> I think it would be cleaner to drop setting subled brightness here and instead
> call led_mc_calc_color_components() below ... :
>
> > + .intensity = colors[i * 3 + j],
> > + };
> > +
> > + fourzone_leds[i].mc_led = (struct led_classdev_mc) {
> > + .led_cdev = {
> > + .name = fourzone_zone_names[i],
> > + .brightness = hw_brightness ? 255 : 0,
> > + .max_brightness = 255,
> > + .brightness_set = fourzone_set_brightness,
> > + .color = LED_COLOR_ID_RGB,
> > + .flags = LED_BRIGHT_HW_CHANGED | LED_RETAIN_AT_SHUTDOWN,
> > + },
> > + .num_colors = 3,
> > + .subled_info = fourzone_leds[i].subleds;
> > + };
> > +
>
> With this all setup, you can now call:
>
> led_mc_calc_color_components(&fourzone_leds[i].mc_led, fourzone_leds[i].mc_led.led_cdev.brightness);
One additional thing, having a temporary variable for fourzone_leds[i]
would be advicable to reduce the line lengths / complexity of the
expressions.
> here, this makes how the subled brightness is set here (on init) identical with
> how it is done on set_brightness calls which is more consistent.
>
> > + fourzone_leds[i].brightness = 255;
> > +
> > + ret = devm_led_classdev_multicolor_register(&device->dev, &fourzone_leds[i].mc_led);
> > + if (ret)
> > + return -ENODEV;
> > + }
> > +
> > + return 0;
> > +}
--
i.
next prev parent reply other threads:[~2024-08-12 15:57 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-19 9:59 [PATCH v4 0/2] " Carlos Ferreira
2024-07-19 9:59 ` [PATCH v4 1/2] " Carlos Ferreira
2024-07-25 3:40 ` kernel test robot
2024-08-12 13:17 ` Ilpo Järvinen
2024-08-12 13:44 ` Hans de Goede
2024-08-12 15:57 ` Ilpo Järvinen [this message]
2024-07-19 9:59 ` [PATCH v4 2/2] HP: wmi: Add documentation for the LED API naming scheme Carlos Ferreira
2024-08-12 12:48 ` Hans de Goede
2024-08-16 16:11 ` Lee Jones
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=121c2aa1-c89b-49bc-c71e-73009b4e04fe@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=carlosmiguelferreira.2003@gmail.com \
--cc=hdegoede@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mustafa.eskieksi@gmail.com \
--cc=platform-driver-x86@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®