Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: Input: appletouch - improve powersaving for Geyser3 devices Input: lifebook - fix an oops on Panasonic CF-18 Input: document intended meaning of KEY_SWITCHVIDEOMODE Input: switch to using seq_list_xxx helpers Input: i8042 - give more trust to PNP data on i386 Input: add driver for Fujitsu serial touchscreens Input: ads7846 - re-check pendown status before reporting events Input: ads7846 - introduce sample settling delay Input: xpad - add support for leds on xbox 360 pad
This commit is contained in:
@@ -344,7 +344,8 @@ struct input_absinfo {
|
||||
#define KEY_BRIGHTNESSUP 225
|
||||
#define KEY_MEDIA 226
|
||||
|
||||
#define KEY_SWITCHVIDEOMODE 227
|
||||
#define KEY_SWITCHVIDEOMODE 227 /* Cycle between available video
|
||||
outputs (Monitor/LCD/TV-out/etc) */
|
||||
#define KEY_KBDILLUMTOGGLE 228
|
||||
#define KEY_KBDILLUMDOWN 229
|
||||
#define KEY_KBDILLUMUP 230
|
||||
|
||||
@@ -210,5 +210,6 @@ static inline void serio_unpin_driver(struct serio *serio)
|
||||
#define SERIO_TOUCHRIGHT 0x32
|
||||
#define SERIO_TOUCHWIN 0x33
|
||||
#define SERIO_TAOSEVM 0x34
|
||||
#define SERIO_FUJITSU 0x35
|
||||
|
||||
#endif
|
||||
|
||||
@@ -16,6 +16,20 @@ struct ads7846_platform_data {
|
||||
u16 vref_delay_usecs; /* 0 for external vref; etc */
|
||||
int keep_vref_on:1; /* set to keep vref on for differential
|
||||
* measurements as well */
|
||||
|
||||
/* Settling time of the analog signals; a function of Vcc and the
|
||||
* capacitance on the X/Y drivers. If set to non-zero, two samples
|
||||
* are taken with settle_delay us apart, and the second one is used.
|
||||
* ~150 uSec with 0.01uF caps.
|
||||
*/
|
||||
u16 settle_delay_usecs;
|
||||
|
||||
/* If set to non-zero, after samples are taken this delay is applied
|
||||
* and penirq is rechecked, to help avoid false events. This value
|
||||
* is affected by the material used to build the touch layer.
|
||||
*/
|
||||
u16 penirq_recheck_delay_usecs;
|
||||
|
||||
u16 x_plate_ohms;
|
||||
u16 y_plate_ohms;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user