diff options
author | Benson Leung <bleung@chromium.org> | 2013-02-21 15:14:55 -0500 |
---|---|---|
committer | Matthew Garrett <matthew.garrett@nebula.com> | 2013-02-27 08:30:46 -0500 |
commit | 741bf0c7be835d7fdecac5d942e88b5d43958f40 (patch) | |
tree | f21a99bee79a9d598b1c01d6f5cb7015b8479fbe /drivers/platform/x86/chromeos_laptop.c | |
parent | cc5c3985a3b17cc7a4bfdf084950d92c8919ea4b (diff) |
Platform: x86: chromeos_laptop - add i915 gmbuses to adapter names
Add the two other i2c buses (vga and panel) from i915.
Chromebook Pixel has input and light sensor devices on these busses.
Signed-off-by: Benson Leung <bleung@chromium.org>
Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
Diffstat (limited to 'drivers/platform/x86/chromeos_laptop.c')
-rw-r--r-- | drivers/platform/x86/chromeos_laptop.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/platform/x86/chromeos_laptop.c b/drivers/platform/x86/chromeos_laptop.c index 04a11cca399d..93d66809355a 100644 --- a/drivers/platform/x86/chromeos_laptop.c +++ b/drivers/platform/x86/chromeos_laptop.c | |||
@@ -39,11 +39,15 @@ static struct i2c_client *ts; | |||
39 | 39 | ||
40 | const char *i2c_adapter_names[] = { | 40 | const char *i2c_adapter_names[] = { |
41 | "SMBus I801 adapter", | 41 | "SMBus I801 adapter", |
42 | "i915 gmbus vga", | ||
43 | "i915 gmbus panel", | ||
42 | }; | 44 | }; |
43 | 45 | ||
44 | /* Keep this enum consistent with i2c_adapter_names */ | 46 | /* Keep this enum consistent with i2c_adapter_names */ |
45 | enum i2c_adapter_type { | 47 | enum i2c_adapter_type { |
46 | I2C_ADAPTER_SMBUS = 0, | 48 | I2C_ADAPTER_SMBUS = 0, |
49 | I2C_ADAPTER_VGADDC, | ||
50 | I2C_ADAPTER_PANEL, | ||
47 | }; | 51 | }; |
48 | 52 | ||
49 | static struct i2c_board_info __initdata cyapa_device = { | 53 | static struct i2c_board_info __initdata cyapa_device = { |