Re: [PATCH v2 1/2] cap1106: Add support for various cap11xx devices

2014-09-22 Thread Daniel Mack
On 09/23/2014 06:04 AM, Matt Ranostay wrote: > diff --git a/drivers/input/keyboard/cap1106.c > b/drivers/input/keyboard/cap1106.c > index d70b65a..07f9e88 100644 > --- a/drivers/input/keyboard/cap1106.c > +++ b/drivers/input/keyboard/cap1106.c > @@ -55,8 +55,6 @@ > #define CAP1106_REG_MANUFACTURE

[PATCH v2 1/2] cap1106: Add support for various cap11xx devices

2014-09-22 Thread Matt Ranostay
Several other variants of the cap11xx device exists with a varying number of capacitance detection channels. Add support for creating the channels dynamically. Signed-off-by: Matt Ranostay --- drivers/input/keyboard/cap1106.c | 64 +++- 1 file changed, 44 inse

[PATCH v2 2/2] cap1106: support for irq-active-high option

2014-09-22 Thread Matt Ranostay
Some applications need to use the irq-active-high push-pull option. This allows it be enabled in the device tree child node. Signed-off-by: Matt Ranostay --- Documentation/devicetree/bindings/input/cap1106.txt | 4 drivers/input/keyboard/cap1106.c| 8 2 files ch

[PATCH v2 0/2] cap1106: add support for cap11xx variants

2014-09-22 Thread Matt Ranostay
Changes from v1: * Reworked various devices support to check product id for respective device. * Added check for invalid zero channels. * Renamed active-high option to more clear irq-active-high * Use regmap_update_bits() instead of regmap_write_bits() Matt Ranostay (2): cap1106: Add sup

Re: [PATCH] soc_button_array: fix the issue that button device can't be enumerated since 3.16-rc1

2014-09-22 Thread Zhang Rui
On Mon, 2014-09-22 at 10:36 -0700, Dmitry Torokhov wrote: > On Mon, Sep 22, 2014 at 09:44:32AM +0800, Zhang Rui wrote: > > Hi, Dmitry, > > > > On Wed, 2014-07-30 at 14:45 +0800, Zhang Rui wrote: > > > Hi, Dmitry, > > > > > > On Wed, 2014-07-09 at 09:57 -0700, Dmitry Torokhov wrote: > > > > On Tue

Re: [PATCH] HID: add new gamepad LED constants

2014-09-22 Thread Michael Wright
Just so I can figure out the next steps, are you still convinced that new LEDs should go in the led subsystem Dmitry? Thanks, -- Michael Wright Android Frameworks -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majord...@vger.kernel.org More

Re: [PATCH] soc_button_array: fix the issue that button device can't be enumerated since 3.16-rc1

2014-09-22 Thread Dmitry Torokhov
On Mon, Sep 22, 2014 at 09:44:32AM +0800, Zhang Rui wrote: > Hi, Dmitry, > > On Wed, 2014-07-30 at 14:45 +0800, Zhang Rui wrote: > > Hi, Dmitry, > > > > On Wed, 2014-07-09 at 09:57 -0700, Dmitry Torokhov wrote: > > > On Tue, Jul 08, 2014 at 10:50:04PM +0200, Rafael J. Wysocki wrote: > > > > On We

[PATCH] HID: input: Finish TransducerSerialNumber implementation

2014-09-22 Thread Jason Gerecke
The commit which introduced TransducerSerialNumber (368c966) is missing two crucial implementation details. Firstly, the commit does not set the type/code/bit/max fields as expected later down the code which can cause the driver to crash when a tablet with this usage is connected. Secondly, the cod

Re: HID: wacom: regression - system freezes when resuming from S3 suspend

2014-09-22 Thread Benjamin Tissoires
On Mon, Sep 22, 2014 at 11:01 AM, Jonas Jelten wrote: > Hi! > > I encountered that my system freezes when resuming my Lenovo X220t with > integrated Wacom ISDv4 tablet from S3 suspend. > > Currently running 3.17.0-rc6, I started to bisect and found that this > commit causes the issue: > > commit 2

HID: wacom: regression - system freezes when resuming from S3 suspend

2014-09-22 Thread Jonas Jelten
Hi! I encountered that my system freezes when resuming my Lenovo X220t with integrated Wacom ISDv4 tablet from S3 suspend. Currently running 3.17.0-rc6, I started to bisect and found that this commit causes the issue: commit 29b4739134c73a2873adec93346f09bb76d6a794 Author: Benjamin Tissoires Da

Re: [PATCH] HID: wacom: fix timeout on probe for some wacoms

2014-09-22 Thread Jiri Kosina
On Mon, 22 Sep 2014, Benjamin Tissoires wrote: > > > I run into this today while trying to improve the generic support of > > > the ISDv4 sensors (those found on laptops not sold by Wacom). This > > > is a regression from 3.16, in a sense that it can add up to 10 > > > seconds to the boot of th

Re: [PATCH] HID: wacom: fix timeout on probe for some wacoms

2014-09-22 Thread Benjamin Tissoires
On Sep 22 2014 or thereabouts, Jiri Kosina wrote: > On Tue, 16 Sep 2014, Benjamin Tissoires wrote: > > > Some Wacom tablets (at least the ISDv4 found in the Lenovo X230) timeout > > during probe while retrieving the input reports. > > The only time this information is valuable is during the featur

Re: [PATCH] HID: wacom: fix timeout on probe for some wacoms

2014-09-22 Thread Jiri Kosina
On Tue, 16 Sep 2014, Benjamin Tissoires wrote: > Some Wacom tablets (at least the ISDv4 found in the Lenovo X230) timeout > during probe while retrieving the input reports. > The only time this information is valuable is during the feature_mapping > stage, so we can ask for it there and discard th

Re: [PATCH v2] hid: sony: Set touchpad bits in the input_configured callback

2014-09-22 Thread Jiri Kosina
On Thu, 18 Sep 2014, Frank Praznik wrote: > Set the DualShock4 touchpad bits in the input_configured callback > so that they are registered properly for any input devices created > during hid_hw_start. > > Signed-off-by: Frank Praznik Applied, thanks Frank. -- Jiri Kosina SUSE Labs -- To unsu

Re: [PATCH 2/3] cap1106: support for active-high interrupt option

2014-09-22 Thread Daniel Mack
On 09/22/2014 07:56 AM, Dmitry Torokhov wrote: > On Sun, Sep 21, 2014 at 12:06:30PM +0200, Daniel Mack wrote: >> On 09/21/2014 05:01 AM, Matt Ranostay wrote: >>> Some applications need to use the active-high push-pull interrupt >>> option. This allows it be enabled in the device tree child node. >>

Re: [PATCH 1/3] cap1106: Add support for various cap11xx devices

2014-09-22 Thread Daniel Mack
On 09/22/2014 12:46 AM, Matt Ranostay wrote: > On Sun, Sep 21, 2014 at 2:58 AM, Daniel Mack wrote: >> On 09/21/2014 05:01 AM, Matt Ranostay wrote: >>> @@ -313,12 +307,16 @@ static int cap1106_i2c_probe(struct i2c_client >>> *i2c_client, >>> >>> static const struct of_device_id cap1106_dt_ids[]