* [PATCH v1] pinctrl: cherryview: Add Setzer models to the Chromebook DMI quirk
@ 2017-07-04 12:58 Andy Shevchenko
2017-07-17 14:30 ` Andy Shevchenko
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Andy Shevchenko @ 2017-07-04 12:58 UTC (permalink / raw)
To: Linus Walleij, linux-gpio, Mika Westerberg, Heikki Krogerus,
Dmitry Torokhov, mail
Cc: Andy Shevchenko
Add one more model to the Chromebook DMI quirk to make it working again.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=194945
Fixes: 2a8209fa6823 ("pinctrl: cherryview: Extend the Chromebook DMI quirk to Intel_Strago systems")
Reported-by: mail@abhishek.geek.nz
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/pinctrl/intel/pinctrl-cherryview.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/pinctrl/intel/pinctrl-cherryview.c b/drivers/pinctrl/intel/pinctrl-cherryview.c
index 20f1b4493994..04e929fd0ffe 100644
--- a/drivers/pinctrl/intel/pinctrl-cherryview.c
+++ b/drivers/pinctrl/intel/pinctrl-cherryview.c
@@ -1548,6 +1548,13 @@ static const struct dmi_system_id chv_no_valid_mask[] = {
},
},
{
+ .ident = "HP Chromebook 11 G5 (Setzer)",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "HP"),
+ DMI_MATCH(DMI_PRODUCT_NAME, "Setzer"),
+ },
+ },
+ {
.ident = "Acer Chromebook R11 (Cyan)",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
--
2.11.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v1] pinctrl: cherryview: Add Setzer models to the Chromebook DMI quirk
2017-07-04 12:58 [PATCH v1] pinctrl: cherryview: Add Setzer models to the Chromebook DMI quirk Andy Shevchenko
@ 2017-07-17 14:30 ` Andy Shevchenko
2017-07-26 10:11 ` Mika Westerberg
2017-08-03 8:19 ` Linus Walleij
2 siblings, 0 replies; 4+ messages in thread
From: Andy Shevchenko @ 2017-07-17 14:30 UTC (permalink / raw)
To: Linus Walleij, linux-gpio, Mika Westerberg, Heikki Krogerus,
Dmitry Torokhov, mail
On Tue, 2017-07-04 at 15:58 +0300, Andy Shevchenko wrote:
> Add one more model to the Chromebook DMI quirk to make it working
> again.
>
Linus, I guess it's a good material for v4.13-rc2 if no objection.
> Link: https://bugzilla.kernel.org/show_bug.cgi?id=194945
> Fixes: 2a8209fa6823 ("pinctrl: cherryview: Extend the Chromebook DMI
> quirk to Intel_Strago systems")
> Reported-by: mail@abhishek.geek.nz
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> drivers/pinctrl/intel/pinctrl-cherryview.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drivers/pinctrl/intel/pinctrl-cherryview.c
> b/drivers/pinctrl/intel/pinctrl-cherryview.c
> index 20f1b4493994..04e929fd0ffe 100644
> --- a/drivers/pinctrl/intel/pinctrl-cherryview.c
> +++ b/drivers/pinctrl/intel/pinctrl-cherryview.c
> @@ -1548,6 +1548,13 @@ static const struct dmi_system_id
> chv_no_valid_mask[] = {
> },
> },
> {
> + .ident = "HP Chromebook 11 G5 (Setzer)",
> + .matches = {
> + DMI_MATCH(DMI_SYS_VENDOR, "HP"),
> + DMI_MATCH(DMI_PRODUCT_NAME, "Setzer"),
> + },
> + },
> + {
> .ident = "Acer Chromebook R11 (Cyan)",
> .matches = {
> DMI_MATCH(DMI_SYS_VENDOR, "GOOGLE"),
--
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Intel Finland Oy
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v1] pinctrl: cherryview: Add Setzer models to the Chromebook DMI quirk
2017-07-04 12:58 [PATCH v1] pinctrl: cherryview: Add Setzer models to the Chromebook DMI quirk Andy Shevchenko
2017-07-17 14:30 ` Andy Shevchenko
@ 2017-07-26 10:11 ` Mika Westerberg
2017-08-03 8:19 ` Linus Walleij
2 siblings, 0 replies; 4+ messages in thread
From: Mika Westerberg @ 2017-07-26 10:11 UTC (permalink / raw)
To: Andy Shevchenko
Cc: Linus Walleij, linux-gpio, Heikki Krogerus, Dmitry Torokhov, mail
On Tue, Jul 04, 2017 at 03:58:39PM +0300, Andy Shevchenko wrote:
> Add one more model to the Chromebook DMI quirk to make it working again.
>
> Link: https://bugzilla.kernel.org/show_bug.cgi?id=194945
> Fixes: 2a8209fa6823 ("pinctrl: cherryview: Extend the Chromebook DMI quirk to Intel_Strago systems")
> Reported-by: mail@abhishek.geek.nz
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v1] pinctrl: cherryview: Add Setzer models to the Chromebook DMI quirk
2017-07-04 12:58 [PATCH v1] pinctrl: cherryview: Add Setzer models to the Chromebook DMI quirk Andy Shevchenko
2017-07-17 14:30 ` Andy Shevchenko
2017-07-26 10:11 ` Mika Westerberg
@ 2017-08-03 8:19 ` Linus Walleij
2 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2017-08-03 8:19 UTC (permalink / raw)
To: Andy Shevchenko
Cc: linux-gpio@vger.kernel.org, Mika Westerberg, Heikki Krogerus,
Dmitry Torokhov, mail
On Tue, Jul 4, 2017 at 2:58 PM, Andy Shevchenko
<andriy.shevchenko@linux.intel.com> wrote:
> Add one more model to the Chromebook DMI quirk to make it working again.
>
> Link: https://bugzilla.kernel.org/show_bug.cgi?id=194945
> Fixes: 2a8209fa6823 ("pinctrl: cherryview: Extend the Chromebook DMI quirk to Intel_Strago systems")
> Reported-by: mail@abhishek.geek.nz
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Patch applied for fixes with Mika's ACK.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-08-03 8:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-04 12:58 [PATCH v1] pinctrl: cherryview: Add Setzer models to the Chromebook DMI quirk Andy Shevchenko
2017-07-17 14:30 ` Andy Shevchenko
2017-07-26 10:11 ` Mika Westerberg
2017-08-03 8:19 ` Linus Walleij
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).