Re: [PATCH] HID: uhid: use __packed__ for uhid_feature_answer_req

2013-01-03 Thread Jiri Kosina
On Mon, 17 Dec 2012, David Herrmann wrote: We use __packed__ for all API structures so we can extend them without breaking alignment rules. We do try to explicitly align the structures, but to be safe we also use __packed__. uhid_feature_answer_req is already 64bit aligned so we can add

Re: Rumble support for Jess/Saitek color rumble pad

2013-01-03 Thread Jiri Kosina
On Tue, 18 Dec 2012, Michael Karcher wrote: Hello developers (and testers) The attached pad adds supports for another gamepad to the hid-pl driver. The color rumble pad P580 marketed using the Saitek brand in Germany, and using a USB Vendor ID attributed to Jess seems to be electronically

Re: [RFC PATCH] hid-sony: fix troubles with Sony remote clones

2013-01-03 Thread Jiri Kosina
On Tue, 18 Dec 2012, Marcelo Ricardo Leitner wrote: Em 18-12-2012 10:33, Marcelo Ricardo Leitner escreveu: [ ... snip ... ] Tested-by: Marcelo Leitner mleit...@redhat.com Applied, thanks guys. -- Jiri Kosina SUSE Labs -- To unsubscribe from this list: send the line unsubscribe linux-input in

Re: [PATCH 00/11] Support of dual pen/multitouch and new default for win 7 certified devices

2013-01-03 Thread Jiri Kosina
On Fri, 23 Nov 2012, Benjamin Tissoires wrote: Last week, I received two new interesting devices report: - N-trig win 8 certified pen/touch panel - Samsung Nexio 42 Bejmanin, Henrik, what are the plans with this patchset please? Planning respin for 3.9? Thanks. N-trig device

Re: [PATCH 1/1] [PATCH] HID: usbhid: Quirk for Formosa IR receiver

2013-01-03 Thread Jiri Kosina
On Fri, 28 Dec 2012, Nicholas Santos wrote: Patch to add the Formosa Industrial Computing, Inc. Infrared Receiver [IR605A/Q] to hid-ids.h and hid-quirks.c. This IR receiver causes about a 10 second timeout when the usbhid driver attempts to initialze the device. Adding this device to the

Re: [PATCH 00/11] Support of dual pen/multitouch and new default for win 7 certified devices

2013-01-03 Thread Benjamin Tissoires
On Thu, Jan 3, 2013 at 10:50 AM, Jiri Kosina jkos...@suse.cz wrote: On Fri, 23 Nov 2012, Benjamin Tissoires wrote: Last week, I received two new interesting devices report: - N-trig win 8 certified pen/touch panel - Samsung Nexio 42 Bejmanin, Henrik, what are the plans with this patchset

Re: [PATCH v2 1/3] Input: imx_keypad - Add device tree support

2013-01-03 Thread Liu Ying
2013/1/3 Shawn Guo shawn@linaro.org: On Tue, Jan 01, 2013 at 11:21:13AM +0800, Liu Ying wrote: +#ifdef CONFIG_OF +static inline int imx_keypad_check_dt(struct platform_device *pdev) +{ + struct device_node *np = pdev-dev.of_node; + + if (!np) + return -ENODEV; + +

[PATCH v3 2/3] ARM: dts: imx: Add imx51 KPP entry

2013-01-03 Thread Liu Ying
1) Add KPP device node entry. 2) Add one KPP pinctrl entry. Signed-off-by: Liu Ying ying@freescale.com --- arch/arm/boot/dts/imx51.dtsi | 23 +++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/imx51.dtsi b/arch/arm/boot/dts/imx51.dtsi

[PATCH v3 1/3] Input: imx_keypad - Add device tree support

2013-01-03 Thread Liu Ying
This patch adds device tree support for imx keypad driver. Signed-off-by: Liu Ying ying@freescale.com --- Changes since v2: - Improve the logic in the probe function to check whether DT-supplied data is presented or not. Changes since v1: - Parse the array keypad-keycodes[] to get row and

[PATCH v3 3/3] ARM i.MX51 babbage: Add keypad support

2013-01-03 Thread Liu Ying
The keypad is on the accessory board of i.MX51 babbage main board and is driven by Keypad Port(KPP) in SoC. The keymap is the same to i.MX25 3stack platform as the accessory board schematic tells that it is designed in this way. Signed-off-by: Liu Ying ying@freescale.com ---