diff options
-rw-r--r-- | drivers/platform/chrome/chromeos_laptop.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/platform/chrome/chromeos_laptop.c b/drivers/platform/chrome/chromeos_laptop.c index 02e014b8927c..e0a671075b28 100644 --- a/drivers/platform/chrome/chromeos_laptop.c +++ b/drivers/platform/chrome/chromeos_laptop.c | |||
@@ -387,6 +387,13 @@ static struct chromeos_laptop hp_chromebook_14 = { | |||
387 | }, | 387 | }, |
388 | }; | 388 | }; |
389 | 389 | ||
390 | static struct chromeos_laptop dell_chromebook_11 = { | ||
391 | .i2c_peripherals = { | ||
392 | /* Touchpad. */ | ||
393 | { .add = setup_cyapa_tp, I2C_ADAPTER_DESIGNWARE_0 }, | ||
394 | }, | ||
395 | }; | ||
396 | |||
390 | static struct chromeos_laptop acer_c7_chromebook = { | 397 | static struct chromeos_laptop acer_c7_chromebook = { |
391 | .i2c_peripherals = { | 398 | .i2c_peripherals = { |
392 | /* Touchpad. */ | 399 | /* Touchpad. */ |
@@ -453,6 +460,14 @@ static struct dmi_system_id chromeos_laptop_dmi_table[] __initdata = { | |||
453 | _CBDD(chromebook_pixel), | 460 | _CBDD(chromebook_pixel), |
454 | }, | 461 | }, |
455 | { | 462 | { |
463 | .ident = "Wolf", | ||
464 | .matches = { | ||
465 | DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"), | ||
466 | DMI_MATCH(DMI_PRODUCT_NAME, "Wolf"), | ||
467 | }, | ||
468 | _CBDD(dell_chromebook_11), | ||
469 | }, | ||
470 | { | ||
456 | .ident = "HP Chromebook 14", | 471 | .ident = "HP Chromebook 14", |
457 | .matches = { | 472 | .matches = { |
458 | DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"), | 473 | DMI_MATCH(DMI_BIOS_VENDOR, "coreboot"), |