diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-16 01:42:59 +0400 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-16 01:42:59 +0400 | 
| commit | cd619e21ea468b02af9eeed75eae2307ec7de1cb (patch) | |
| tree | 7d9febcbea96480d9b9f9ef291ad45ada3eac978 /drivers/platform/x86/amilo-rfkill.c | |
| parent | 0375ec5899a37e80af7be8e813548df3292325ff (diff) | |
| parent | 5c07eae979dfb596141c6885e5f5ecf1cd22cad3 (diff) | |
| download | linux-cd619e21ea468b02af9eeed75eae2307ec7de1cb.tar.xz | |
Merge branch 'for_linus' of git://cavan.codon.org.uk/platform-drivers-x86
Pull x86 platform updates from Matthew Garrett:
 "Nothing amazing here, almost entirely cleanups and minor bugfixes and
  one bit of hardware enablement in the amilo-rfkill driver"
* 'for_linus' of git://cavan.codon.org.uk/platform-drivers-x86:
  platform/x86: panasonic-laptop: reuse module_acpi_driver
  samsung-laptop: fix config build error
  platform: x86: remove unnecessary platform_set_drvdata()
  amilo-rfkill: Enable using amilo-rfkill with the FSC Amilo L1310.
  wmi: parse_wdg() should return kernel error codes
  hp_wmi: Fix unregister order in hp_wmi_rfkill_setup()
  platform: replace strict_strto*() with kstrto*()
  x86: irst: use module_acpi_driver to simplify the code
  x86: smartconnect: use module_acpi_driver to simplify the code
  platform samsung-q10: use ACPI instead of direct EC calls
  thinkpad_acpi: add the ability setting TPACPI_LED_NONE by quirk
  thinkpad_acpi: return -NODEV while operating uninitialized LEDs
Diffstat (limited to 'drivers/platform/x86/amilo-rfkill.c')
| -rw-r--r-- | drivers/platform/x86/amilo-rfkill.c | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/drivers/platform/x86/amilo-rfkill.c b/drivers/platform/x86/amilo-rfkill.c index 6296f078b7bc..da36b5e824d4 100644 --- a/drivers/platform/x86/amilo-rfkill.c +++ b/drivers/platform/x86/amilo-rfkill.c @@ -85,6 +85,13 @@ static const struct dmi_system_id amilo_rfkill_id_table[] = {  	{  		.matches = {  			DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), +			DMI_MATCH(DMI_BOARD_NAME, "AMILO L1310"), +		}, +		.driver_data = (void *)&amilo_a1655_rfkill_ops +	}, +	{ +		.matches = { +			DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),  			DMI_MATCH(DMI_BOARD_NAME, "AMILO M7440"),  		},  		.driver_data = (void *)&amilo_m7440_rfkill_ops | 
