* [PATCH] i8k: Add support for Dell Latitude E6440
@ 2014-10-10 9:12 Pali Rohár
2014-10-10 20:56 ` Guenter Roeck
0 siblings, 1 reply; 6+ messages in thread
From: Pali Rohár @ 2014-10-10 9:12 UTC (permalink / raw)
To: Guenter Roeck, Arnd Bergmann, Greg Kroah-Hartman
Cc: linux-kernel, Steven Honeyman, Pali Rohár
Dell Latitude E6440 needs same settings as E6540.
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
---
drivers/char/i8k.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/char/i8k.c b/drivers/char/i8k.c
index 34174d0..471f985 100644
--- a/drivers/char/i8k.c
+++ b/drivers/char/i8k.c
@@ -711,6 +711,14 @@ static struct dmi_system_id i8k_dmi_table[] __initdata = {
.driver_data = (void *)&i8k_config_data[DELL_LATITUDE_D520],
},
{
+ .ident = "Dell Latitude E6440",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+ DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6440"),
+ },
+ .driver_data = (void *)&i8k_config_data[DELL_LATITUDE_E6540],
+ },
+ {
.ident = "Dell Latitude E6540",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] i8k: Add support for Dell Latitude E6440
2014-10-10 9:12 [PATCH] i8k: Add support for Dell Latitude E6440 Pali Rohár
@ 2014-10-10 20:56 ` Guenter Roeck
2014-10-17 22:23 ` Pali Rohár
0 siblings, 1 reply; 6+ messages in thread
From: Guenter Roeck @ 2014-10-10 20:56 UTC (permalink / raw)
To: Pali Rohár, Arnd Bergmann, Greg Kroah-Hartman
Cc: linux-kernel, Steven Honeyman
On 10/10/2014 02:12 AM, Pali Rohár wrote:
> Dell Latitude E6440 needs same settings as E6540.
>
> Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
Acked-by: Guenter Roeck <linux@roeck-us.net>
> ---
> drivers/char/i8k.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/char/i8k.c b/drivers/char/i8k.c
> index 34174d0..471f985 100644
> --- a/drivers/char/i8k.c
> +++ b/drivers/char/i8k.c
> @@ -711,6 +711,14 @@ static struct dmi_system_id i8k_dmi_table[] __initdata = {
> .driver_data = (void *)&i8k_config_data[DELL_LATITUDE_D520],
> },
> {
> + .ident = "Dell Latitude E6440",
> + .matches = {
> + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
> + DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6440"),
> + },
> + .driver_data = (void *)&i8k_config_data[DELL_LATITUDE_E6540],
> + },
> + {
> .ident = "Dell Latitude E6540",
> .matches = {
> DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] i8k: Add support for Dell Latitude E6440
2014-10-10 20:56 ` Guenter Roeck
@ 2014-10-17 22:23 ` Pali Rohár
2014-10-18 10:40 ` Greg Kroah-Hartman
0 siblings, 1 reply; 6+ messages in thread
From: Pali Rohár @ 2014-10-17 22:23 UTC (permalink / raw)
To: Arnd Bergmann, Greg Kroah-Hartman
Cc: Guenter Roeck, linux-kernel, Steven Honeyman
[-- Attachment #1: Type: Text/Plain, Size: 1331 bytes --]
On Friday 10 October 2014 22:56:55 Guenter Roeck wrote:
> On 10/10/2014 02:12 AM, Pali Rohár wrote:
> > Dell Latitude E6440 needs same settings as E6540.
> >
> > Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
>
> Acked-by: Guenter Roeck <linux@roeck-us.net>
>
Greg, Arnd: PING
Can you apply also this patch for E6440? Support for E6540 is
already in linus tree: 06c88b0d7ad87540405aea7f91d98ef43be04c95
> > ---
> >
> > drivers/char/i8k.c | 8 ++++++++
> > 1 file changed, 8 insertions(+)
> >
> > diff --git a/drivers/char/i8k.c b/drivers/char/i8k.c
> > index 34174d0..471f985 100644
> > --- a/drivers/char/i8k.c
> > +++ b/drivers/char/i8k.c
> > @@ -711,6 +711,14 @@ static struct dmi_system_id
> > i8k_dmi_table[] __initdata = {
> >
> > .driver_data = (void
> > *)&i8k_config_data[DELL_LATITUDE_D520],
> >
> > },
> > {
> >
> > + .ident = "Dell Latitude E6440",
> > + .matches = {
> > + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
> > + DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6440"),
> > + },
> > + .driver_data = (void
> > *)&i8k_config_data[DELL_LATITUDE_E6540], + },
> > + {
> >
> > .ident = "Dell Latitude E6540",
> > .matches = {
> >
> > DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
--
Pali Rohár
pali.rohar@gmail.com
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] i8k: Add support for Dell Latitude E6440
2014-10-17 22:23 ` Pali Rohár
@ 2014-10-18 10:40 ` Greg Kroah-Hartman
2014-10-24 18:44 ` Pali Rohár
0 siblings, 1 reply; 6+ messages in thread
From: Greg Kroah-Hartman @ 2014-10-18 10:40 UTC (permalink / raw)
To: Pali Rohár
Cc: Arnd Bergmann, Guenter Roeck, linux-kernel, Steven Honeyman
On Sat, Oct 18, 2014 at 12:23:39AM +0200, Pali Rohár wrote:
> On Friday 10 October 2014 22:56:55 Guenter Roeck wrote:
> > On 10/10/2014 02:12 AM, Pali Rohár wrote:
> > > Dell Latitude E6440 needs same settings as E6540.
> > >
> > > Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
> >
> > Acked-by: Guenter Roeck <linux@roeck-us.net>
> >
>
> Greg, Arnd: PING
>
> Can you apply also this patch for E6440? Support for E6540 is
> already in linus tree: 06c88b0d7ad87540405aea7f91d98ef43be04c95
I can't apply anything to my trees until 3.18-rc1 is out, but will do
this after that happens.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] i8k: Add support for Dell Latitude E6440
2014-10-18 10:40 ` Greg Kroah-Hartman
@ 2014-10-24 18:44 ` Pali Rohár
2014-10-31 23:22 ` Pali Rohár
0 siblings, 1 reply; 6+ messages in thread
From: Pali Rohár @ 2014-10-24 18:44 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Arnd Bergmann, Guenter Roeck, linux-kernel, Steven Honeyman
[-- Attachment #1: Type: Text/Plain, Size: 855 bytes --]
On Saturday 18 October 2014 12:40:56 Greg Kroah-Hartman wrote:
> On Sat, Oct 18, 2014 at 12:23:39AM +0200, Pali Rohár wrote:
> > On Friday 10 October 2014 22:56:55 Guenter Roeck wrote:
> > > On 10/10/2014 02:12 AM, Pali Rohár wrote:
> > > > Dell Latitude E6440 needs same settings as E6540.
> > > >
> > > > Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
> > >
> > > Acked-by: Guenter Roeck <linux@roeck-us.net>
> >
> > Greg, Arnd: PING
> >
> > Can you apply also this patch for E6440? Support for E6540
> > is already in linus tree:
> > 06c88b0d7ad87540405aea7f91d98ef43be04c95
>
> I can't apply anything to my trees until 3.18-rc1 is out, but
> will do this after that happens.
>
> thanks,
>
> greg k-h
Hi Greg!
I want to remind you patches, because v3.18-rc1 was released.
--
Pali Rohár
pali.rohar@gmail.com
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] i8k: Add support for Dell Latitude E6440
2014-10-24 18:44 ` Pali Rohár
@ 2014-10-31 23:22 ` Pali Rohár
0 siblings, 0 replies; 6+ messages in thread
From: Pali Rohár @ 2014-10-31 23:22 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Arnd Bergmann, Guenter Roeck, linux-kernel, Steven Honeyman
[-- Attachment #1: Type: Text/Plain, Size: 975 bytes --]
On Friday 24 October 2014 20:44:59 Pali Rohár wrote:
> On Saturday 18 October 2014 12:40:56 Greg Kroah-Hartman wrote:
> > On Sat, Oct 18, 2014 at 12:23:39AM +0200, Pali Rohár wrote:
> > > On Friday 10 October 2014 22:56:55 Guenter Roeck wrote:
> > > > On 10/10/2014 02:12 AM, Pali Rohár wrote:
> > > > > Dell Latitude E6440 needs same settings as E6540.
> > > > >
> > > > > Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
> > > >
> > > > Acked-by: Guenter Roeck <linux@roeck-us.net>
> > >
> > > Greg, Arnd: PING
> > >
> > > Can you apply also this patch for E6440? Support for E6540
> > > is already in linus tree:
> > > 06c88b0d7ad87540405aea7f91d98ef43be04c95
> >
> > I can't apply anything to my trees until 3.18-rc1 is out,
> > but will do this after that happens.
> >
> > thanks,
> >
> > greg k-h
>
> Hi Greg!
> I want to remind you patches, because v3.18-rc1 was released.
Greg, ping.
--
Pali Rohár
pali.rohar@gmail.com
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-10-31 23:22 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-10 9:12 [PATCH] i8k: Add support for Dell Latitude E6440 Pali Rohár
2014-10-10 20:56 ` Guenter Roeck
2014-10-17 22:23 ` Pali Rohár
2014-10-18 10:40 ` Greg Kroah-Hartman
2014-10-24 18:44 ` Pali Rohár
2014-10-31 23:22 ` Pali Rohár
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).