Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input

Pull input layer updates from Dmitry Torokhov:

- a new ACPI ID for Elan touchpad found in yet another Ideapad model

- Synaptics RMI4 will allow binding to controllers reporting SMB
version 3 (note that we are not adding any new ACPI IDs to the
Synaptics PS/2 drover so unless user explicitly enables intertouch
support there is no user-visible change)

- a fixup to TSC 2004/5 touchscreen driver to mark input devices as
"direct" to help userspace identify the type of device they are
dealing with

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:
Input: synaptics-rmi4 - RMI4 can also use SMBUS version 3
Input: tsc200x-core - set INPUT_PROP_DIRECT
Input: elan_i2c - add ELAN060C to the ACPI table

Changed files
+4 -2
drivers
input
mouse
rmi4
touchscreen
+1
drivers/input/mouse/elan_i2c_core.c
··· 1258 1258 { "ELAN0605", 0 }, 1259 1259 { "ELAN0609", 0 }, 1260 1260 { "ELAN060B", 0 }, 1261 + { "ELAN060C", 0 }, 1261 1262 { "ELAN0611", 0 }, 1262 1263 { "ELAN1000", 0 }, 1263 1264 { }
+2 -2
drivers/input/rmi4/rmi_smbus.c
··· 312 312 rmi_smb->xport.dev = &client->dev; 313 313 rmi_smb->xport.pdata = *pdata; 314 314 rmi_smb->xport.pdata.irq = client->irq; 315 - rmi_smb->xport.proto_name = "smb2"; 315 + rmi_smb->xport.proto_name = "smb"; 316 316 rmi_smb->xport.ops = &rmi_smb_ops; 317 317 318 318 smbus_version = rmi_smb_get_version(rmi_smb); ··· 322 322 rmi_dbg(RMI_DEBUG_XPORT, &client->dev, "Smbus version is %d", 323 323 smbus_version); 324 324 325 - if (smbus_version != 2) { 325 + if (smbus_version != 2 && smbus_version != 3) { 326 326 dev_err(&client->dev, "Unrecognized SMB version %d\n", 327 327 smbus_version); 328 328 return -ENODEV;
+1
drivers/input/touchscreen/tsc200x-core.c
··· 531 531 532 532 input_set_drvdata(input_dev, ts); 533 533 534 + __set_bit(INPUT_PROP_DIRECT, input_dev->propbit); 534 535 input_set_capability(input_dev, EV_KEY, BTN_TOUCH); 535 536 536 537 input_set_abs_params(input_dev, ABS_X,