diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-04 15:02:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-04 15:02:11 -0400 |
commit | 51e771c0d25b43d0f12b2c7c01939942becbbe28 (patch) | |
tree | df82af16b012c452c1457f431e57d47c8c2bacd2 /drivers/platform/chrome | |
parent | abebcdfb64f1b39eeeb14282d9cd4aad1ed86f8d (diff) | |
parent | 01b944fe1cd4e21a2a9ed51adbdbafe2d5e905ba (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
Pull input subsystem updates from Dmitry Torokhov:
"Drivers, drivers, drivers... No interesting input core changes this
time"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: (74 commits)
Input: elan_i2c - use iap_version to get firmware information
Input: max8997_haptic - fix module alias
Input: elan_i2c - fix typos for validpage_count
Input: psmouse - add small delay for IBM trackpoint pass-through mode
Input: synaptics - fix handling of disabling gesture mode
Input: elan_i2c - enable ELAN0100 acpi panels
Input: gpio-keys - report error when disabling unsupported key
Input: sur40 - fix error return code
Input: sentelic - silence some underflow warnings
Input: zhenhua - switch to using bitrev8()
Input: cros_ec_keyb - replace KEYBOARD_CROS_EC dependency
Input: cap11xx - add LED support
Input: elants_i2c - fix for devm_gpiod_get API change
Input: elan_i2c - enable asynchronous probing
Input: elants_i2c - enable asynchronous probing
Input: elants_i2c - wire up regulator support
Input: do not emit unneeded EV_SYN when suspending
Input: elants_i2c - disable idle mode before updating firmware
MAINTAINERS: Add maintainer for atmel_mxt_ts
Input: atmel_mxt_ts - remove warning on zero T44 count
...
Diffstat (limited to 'drivers/platform/chrome')
-rw-r--r-- | drivers/platform/chrome/chromeos_laptop.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/platform/chrome/chromeos_laptop.c b/drivers/platform/chrome/chromeos_laptop.c index a04019ab9feb..02072749fff3 100644 --- a/drivers/platform/chrome/chromeos_laptop.c +++ b/drivers/platform/chrome/chromeos_laptop.c | |||
@@ -23,7 +23,7 @@ | |||
23 | 23 | ||
24 | #include <linux/dmi.h> | 24 | #include <linux/dmi.h> |
25 | #include <linux/i2c.h> | 25 | #include <linux/i2c.h> |
26 | #include <linux/i2c/atmel_mxt_ts.h> | 26 | #include <linux/platform_data/atmel_mxt_ts.h> |
27 | #include <linux/input.h> | 27 | #include <linux/input.h> |
28 | #include <linux/interrupt.h> | 28 | #include <linux/interrupt.h> |
29 | #include <linux/module.h> | 29 | #include <linux/module.h> |
@@ -111,6 +111,7 @@ static struct mxt_platform_data atmel_224s_tp_platform_data = { | |||
111 | .irqflags = IRQF_TRIGGER_FALLING, | 111 | .irqflags = IRQF_TRIGGER_FALLING, |
112 | .t19_num_keys = ARRAY_SIZE(mxt_t19_keys), | 112 | .t19_num_keys = ARRAY_SIZE(mxt_t19_keys), |
113 | .t19_keymap = mxt_t19_keys, | 113 | .t19_keymap = mxt_t19_keys, |
114 | .suspend_mode = MXT_SUSPEND_T9_CTRL, | ||
114 | }; | 115 | }; |
115 | 116 | ||
116 | static struct i2c_board_info atmel_224s_tp_device = { | 117 | static struct i2c_board_info atmel_224s_tp_device = { |
@@ -121,6 +122,7 @@ static struct i2c_board_info atmel_224s_tp_device = { | |||
121 | 122 | ||
122 | static struct mxt_platform_data atmel_1664s_platform_data = { | 123 | static struct mxt_platform_data atmel_1664s_platform_data = { |
123 | .irqflags = IRQF_TRIGGER_FALLING, | 124 | .irqflags = IRQF_TRIGGER_FALLING, |
125 | .suspend_mode = MXT_SUSPEND_T9_CTRL, | ||
124 | }; | 126 | }; |
125 | 127 | ||
126 | static struct i2c_board_info atmel_1664s_device = { | 128 | static struct i2c_board_info atmel_1664s_device = { |