[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAHp75Vdwq=zkrsf=ONV6KjpP1huZakQ11x6Z538C-5MFrMeMPQ@mail.gmail.com>
Date: Wed, 8 Nov 2017 12:26:00 +0200
From: Andy Shevchenko <andy.shevchenko@...il.com>
To: Guillaume Douézan-Grard
<gdouezangrard@...il.com>
Cc: Darren Hart <dvhart@...radead.org>,
Andy Shevchenko <andy@...radead.org>,
Platform Driver <platform-driver-x86@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v2 4/4] platform/x86: topstar-laptop: add optional WLAN
LED workaround
On Wed, Nov 8, 2017 at 2:25 AM, Guillaume Douézan-Grard
<gdouezangrard@...il.com> wrote:
> On Sun, Nov 05, 2017 at 02:34:43PM -0800, Darren Hart wrote:
>> On Sun, Nov 05, 2017 at 03:28:09PM +0200, Andy Shevchenko wrote:
> I replaced the module parameter with a board name/version DMI check,
> that will be included for the new patch serie.
Below is (as PoC) fine for me.
Though one comment.
> @@ -291,10 +289,16 @@ static int topstar_acpi_add(struct acpi_device *device)
> if (err)
> goto err_platform_exit;
>
> - if (led_workaround) {
> + /*
> + * Enable software-based WLAN LED control on systems with defective
> + * hardware switch.
> + */
> + if (dmi_match(DMI_BOARD_NAME, "U931")
> + && dmi_match(DMI_BOARD_VERSION, "RVP7")) {
I would better to see dmi_system_id table with callback that sets this
boolean variable inside topstar structure.
Something like below (adapt it to better suit your needs):
static const struct dmi_system_id topstar_quirks[] = {
{
.callback = dmi_led_workaround,
.ident = "Topstar ... BLA BLA BLA",
.matches = {
DMI_MATCH(DMI_BOARD_NAME, "U931"),
DMI_MATCH(DMI_BOARD_VERSION, "RVP7"),
},
.driver_data = topstar,
},
{}
};
--
With Best Regards,
Andy Shevchenko
Powered by blists - more mailing lists