diff options
| author | Ondrej Zary <[email protected]> | 2014-11-10 00:11:54 +0100 |
|---|---|---|
| committer | Darren Hart <[email protected]> | 2014-12-03 10:10:15 -0800 |
| commit | 63a9e016e8b7efddd5c0ceac2cca53540d5b78e1 (patch) | |
| tree | fddf023e2e7353383dea99a4d353ad2c90e8501e | |
| parent | c6b7ef21098e9f6298e49ee59c28c6c1096faa07 (diff) | |
toshiba-acpi: Add missing ID (TOS6207)
toshiba-acpi was always missing TOS6207 ID so it did not load automatically
on some laptops (such as Portege R100). But it worked fine if loaded manually.
Commit 135740de7764 ("toshiba_acpi: Convert to use acpi_driver") broke that
and the driver does not work even when loaded manually since then.
Add TOS6207 ID to fix it.
Tested on Toshiba Portege R100.
Signed-off-by: Ondrej Zary <[email protected]>
Signed-off-by: Darren Hart <[email protected]>
| -rw-r--r-- | drivers/platform/x86/toshiba_acpi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/platform/x86/toshiba_acpi.c b/drivers/platform/x86/toshiba_acpi.c index a3294690df37..f0011a5e9672 100644 --- a/drivers/platform/x86/toshiba_acpi.c +++ b/drivers/platform/x86/toshiba_acpi.c @@ -186,6 +186,7 @@ static struct toshiba_acpi_dev *toshiba_acpi; static const struct acpi_device_id toshiba_device_ids[] = { {"TOS6200", 0}, + {"TOS6207", 0}, {"TOS6208", 0}, {"TOS1900", 0}, {"", 0}, |