2009-10-15 01:04:22

by Tim Hoppen

[permalink] [raw]
Subject: [PATCH 1/1] Added an additional Sony laptop to acpi_osi_dmi_table


Signed-off-by: Tim Hoppen <[email protected]>
---
drivers/acpi/blacklist.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c
index e56b2a7..01cca5f 100644
--- a/drivers/acpi/blacklist.c
+++ b/drivers/acpi/blacklist.c
@@ -211,6 +211,14 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = {
DMI_MATCH(DMI_PRODUCT_NAME, "Sony VGN-SR290J"),
},
},
+ {
+ .callback = dmi_disable_osi_vista,
+ .ident = "Sony VGN-FW351J",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
+ DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW351J"),
+ },
+ },

/*
* BIOS invocation of _OSI(Linux) is almost always a BIOS bug.
--
1.6.5


2009-10-15 01:47:42

by Zhang, Rui

[permalink] [raw]
Subject: RE: [PATCH 1/1] Added an additional Sony laptop to acpi_osi_dmi_table

Is there any bug report for this issue?
If yes, can you add the link in the change log please?

Thanks,
Rui

-----Original Message-----
From: Tim Hoppen [mailto:[email protected]]
Sent: Thursday, October 15, 2009 9:00 AM
Cc: [email protected]; Zhang, Rui; [email protected]; [email protected]; [email protected]; [email protected]; Tim Hoppen
Subject: [PATCH 1/1] Added an additional Sony laptop to acpi_osi_dmi_table


Signed-off-by: Tim Hoppen <[email protected]>
---
drivers/acpi/blacklist.c | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c
index e56b2a7..01cca5f 100644
--- a/drivers/acpi/blacklist.c
+++ b/drivers/acpi/blacklist.c
@@ -211,6 +211,14 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = {
DMI_MATCH(DMI_PRODUCT_NAME, "Sony VGN-SR290J"),
},
},
+ {
+ .callback = dmi_disable_osi_vista,
+ .ident = "Sony VGN-FW351J",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
+ DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW351J"),
+ },
+ },

/*
* BIOS invocation of _OSI(Linux) is almost always a BIOS bug.
--
1.6.5

2009-10-15 01:50:56

by Daniel Walker

[permalink] [raw]
Subject: Re: [PATCH 1/1] Added an additional Sony laptop to acpi_osi_dmi_table

On Wed, 2009-10-14 at 17:59 -0700, Tim Hoppen wrote:
> Signed-off-by: Tim Hoppen <[email protected]>
> ---
> drivers/acpi/blacklist.c | 8 ++++++++
> 1 files changed, 8 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c
> index e56b2a7..01cca5f 100644
> --- a/drivers/acpi/blacklist.c
> +++ b/drivers/acpi/blacklist.c
> @@ -211,6 +211,14 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = {
> DMI_MATCH(DMI_PRODUCT_NAME, "Sony VGN-SR290J"),
> },
> },
> + {
> + .callback = dmi_disable_osi_vista,
> + .ident = "Sony VGN-FW351J",
> + .matches = {
> + DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
> + DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW351J"),
> + },
> + },

It looks like your not indenting correctly. The above lines should be
tabbed instead of just spaced over .. You may have done copy and paste
on this block from the code around this. Copy and paste usually doesn't
properly copy the tabs .. Could you resubmit this with the tabbing added
back in?

Daniel