diff options
author | Mattia Dongili <malattia@linux.it> | 2007-07-15 13:34:38 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-07-22 00:34:58 -0400 |
commit | 89892d153d0d46018241afc7944910912bcd9688 (patch) | |
tree | a1b9e3f61d498c9881f7a60b5fb4af6dcd1d07bc /drivers/misc | |
parent | bc57f865fa2282ad2b7efe02da0a752e602e982e (diff) |
sony-laptop: Add Vaio FE to the special init sequence
The Vaio FE series uses the same sequence as Vaio C series
Signed-off-by: Mattia Dongili <malattia@linux.it>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/sony-laptop.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/misc/sony-laptop.c b/drivers/misc/sony-laptop.c index af69b3bd01da..85969c85cd89 100644 --- a/drivers/misc/sony-laptop.c +++ b/drivers/misc/sony-laptop.c | |||
@@ -847,6 +847,15 @@ static struct sony_nc_event sony_C_events[] = { | |||
847 | /* SNC-only model map */ | 847 | /* SNC-only model map */ |
848 | struct dmi_system_id sony_nc_ids[] = { | 848 | struct dmi_system_id sony_nc_ids[] = { |
849 | { | 849 | { |
850 | .ident = "Sony Vaio FE Series", | ||
851 | .callback = sony_nc_C_enable, | ||
852 | .driver_data = sony_C_events, | ||
853 | .matches = { | ||
854 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), | ||
855 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FE"), | ||
856 | }, | ||
857 | }, | ||
858 | { | ||
850 | .ident = "Sony Vaio C Series", | 859 | .ident = "Sony Vaio C Series", |
851 | .callback = sony_nc_C_enable, | 860 | .callback = sony_nc_C_enable, |
852 | .driver_data = sony_C_events, | 861 | .driver_data = sony_C_events, |