<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input">
    <title>gmane.linux.kernel.input</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30767"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30765"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30764"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30763"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30762"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30761"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30760"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30759"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30758"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30757"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30756"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30755"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30754"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30753"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30752"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30751"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30749"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30748"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30746"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.linux.kernel.input/30745"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30767">
    <title>Re: Posiflex 0d3a:a000 touchscreen press not recognized in kernel 3.9.4</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30767</link>
    <description>&lt;pre&gt;

Thanks. I am applying this with Jan's Tested-by: (and I am also extending 
the comnent preceeding the condition to better explain this case).

&lt;/pre&gt;</description>
    <dc:creator>Jiri Kosina</dc:creator>
    <dc:date>2013-06-19T21:54:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30765">
    <title>Re: Posiflex 0d3a:a000 touchscreen press not recognized in kernel 3.9.4</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30765</link>
    <description>&lt;pre&gt;Am 19.06.2013 17:56, schrieb Benjamin Tissoires:
It works. Many thanks for making a patch that quick.

Kind regards

Jan
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo&amp;lt; at &amp;gt;vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

&lt;/pre&gt;</description>
    <dc:creator>Jan Kandziora</dc:creator>
    <dc:date>2013-06-19T16:42:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30764">
    <title>Re: Posiflex 0d3a:a000 touchscreen press not recognized in kernel 3.9.4</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30764</link>
    <description>&lt;pre&gt;Hi Jan,

On 06/19/2013 11:23 AM, Jan Kandziora wrote:

Thanks for the logs. The problem comes from a commit introduced in 3.3 which discards the BTN_LEFT information.

If possible, can you apply and test the following patch?

Cheers,
Benjamin

From: Benjamin Tissoires &amp;lt;benjamin.tissoires&amp;lt; at &amp;gt;redhat.com&amp;gt;
Date: Wed, 19 Jun 2013 17:49:05 +0200
Subject: [PATCH] HID: input: fix false positive out of range values

Commit 6da7066906e977d42104a859c490f5f9a300488c introduced in 3.3
"HID: ignore absolute values which don't fit between logical min and max"
prevents some Posiflex touch screen to work because they do not provide
logical min and max for their buttons.
Thus, logical min and max are at 0, discarding the buttons events, and
preventing the device to report appropriate X Y.

Adding a check on "min &amp;lt; max" solves the problem.

Reported-by: Jan Kandziora &amp;lt;jjj&amp;lt; at &amp;gt;gmx.de&amp;gt;
Signed-off-by: Benjamin Tissoires &amp;lt;benjamin.tissoires&amp;lt; at &amp;gt;redhat.com&amp;gt;
---
 drivers/hid/hid-input.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drive&lt;/pre&gt;</description>
    <dc:creator>Benjamin Tissoires</dc:creator>
    <dc:date>2013-06-19T15:56:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30763">
    <title>Re: [PATCH V3 5/5] input: pxa27x-keypad: add device tree support</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30763</link>
    <description>&lt;pre&gt;
Actually there is, but under a different (more user friendly)
name:  See the 'debounce-delay-ms' property in
Documentation/devicetree/bindings/input/gpio-matrix-keypad.txt
which gets referenced in the matrix_keypad_parse_dt() routine in
the drivers/input/keyboard/matrix_keypad.c source file.  Ah, your
last sentence mentions that fact.

But when you introduce DT support into an existing driver which
previously used platform data, then there is no problem with
backwards compatibility in .dts files.  So I suggest to go with
the "debounce-delay-ms" name since it better reflects to the .dts
author (hardware engineer) which unit the number is supposed to
be specified in.


Note that I've recently worked on extending the matrix keypad
input driver (doc improvements, software polling, binary encoded
column selection), but haven't submitted the patch series yet
since it's perfectly operational on the target which motivated
the extension but wasn't tested yet on any other platform or
matrix setup -- I currently lack &lt;/pre&gt;</description>
    <dc:creator>Gerhard Sittig</dc:creator>
    <dc:date>2013-06-19T11:13:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30762">
    <title>Re: [PATCH V3 5/5] input: pxa27x-keypad: add device tree support</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30762</link>
    <description>&lt;pre&gt;
I'd suggest using "debounce-interval" as in gpio-keys then, since that
is the most generic driver.

Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo&amp;lt; at &amp;gt;vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

&lt;/pre&gt;</description>
    <dc:creator>Arnd Bergmann</dc:creator>
    <dc:date>2013-06-19T09:25:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30761">
    <title>Re: [PATCH V3 5/5] input: pxa27x-keypad: add device tree support</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30761</link>
    <description>&lt;pre&gt;I searched at drivers/input and Documents.
Two drivers use "debounce-interval", gpio-keys.c and stmpe-keypad.c.
They describe the meanings of "debounce-interval" at its own document file.
Some other drivers uses "xxx,debounce-delay-ms" or "debounce-delay-ms"
So it seems that there is no generic prop name for this debounce interval.

--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo&amp;lt; at &amp;gt;vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

&lt;/pre&gt;</description>
    <dc:creator>Chao Xie</dc:creator>
    <dc:date>2013-06-19T08:38:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30760">
    <title>Re: [PATCH V3 5/5] input: pxa27x-keypad: add device tree support</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30760</link>
    <description>&lt;pre&gt;Dear Chao Xie,


Is there no generic prop name for this debounce interval?

Best regards,
Marek Vasut
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo&amp;lt; at &amp;gt;vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

&lt;/pre&gt;</description>
    <dc:creator>Marek Vasut</dc:creator>
    <dc:date>2013-06-19T08:22:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30759">
    <title>Re: Posiflex 0d3a:a000 touchscreen press not recognized in kernel 3.9.4</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30759</link>
    <description>&lt;pre&gt;Hi Jan,

On Wed, Jun 19, 2013 at 9:12 AM, Jan Kandziora &amp;lt;jjj&amp;lt; at &amp;gt;gmx.de&amp;gt; wrote:

If your device is handled through hid-generic, it should be easy to
debug it remotely.


Ok, I will need at least the dmesg log and the output of hid-recorder
[1] if your device is handled through hid-generic.
Hid-replay will then allow me to virtually plug your device on my
laptop so that I can replay and find out why the btn_left events are
not emitted anymore.

Cheers,
Benjamin

[1] http://bentiss.github.io/hid-replay-docs/

--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo&amp;lt; at &amp;gt;vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

&lt;/pre&gt;</description>
    <dc:creator>Benjamin Tissoires</dc:creator>
    <dc:date>2013-06-19T07:50:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30758">
    <title>Posiflex 0d3a:a000 touchscreen press not recognized in kernel 3.9.4</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30758</link>
    <description>&lt;pre&gt;Hello,

I have a Posiflex 7215 POS system which has a USB touchscreen controller
onboard. I've done a kernel update from 2.6.35.4 to 3.9.4 and the touch
stopped working correctly. I tried with the generic usb hid driver, the
usbtouchscreen driver doesn't support this usb id. Evtest says:


# evtest /dev/input/event4
Input driver version is 1.0.1
Input device ID: bus 0x3 vendor 0xd3a product 0xa000 version 0x110
Input device name: "Posiflex Inc. USB TOUCH V390"
Supported events:
  Event type 0 (Sync)
  Event type 1 (Key)
    Event code 272 (LeftBtn)
    Event code 273 (RightBtn)
    Event code 274 (MiddleBtn)
  Event type 3 (Absolute)
    Event code 0 (X)
      Value   2184
      Min        0
      Max     4095
    Event code 1 (Y)
      Value   3801
      Min        0
      Max     4095
  Event type 4 (Misc)
    Event code 4 (ScanCode)
Testing ... (interrupt to exit)

Event: time 1371798299.337455, type 3 (Absolute), code 0 (X), value 1596
Event: time 1371798299.337455, type 3 (Absolute), code 1 (Y), value 1&lt;/pre&gt;</description>
    <dc:creator>Jan Kandziora</dc:creator>
    <dc:date>2013-06-19T07:12:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30757">
    <title>Re: [PATCH 3/3] Input: tps6507x-ts - convert to polled input device infrastructure</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30757</link>
    <description>&lt;pre&gt;
Linux-next should work, I do not have anything else for this driver
pending in my queue.

Thanks.

&lt;/pre&gt;</description>
    <dc:creator>Dmitry Torokhov</dc:creator>
    <dc:date>2013-06-19T06:17:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30756">
    <title>Re: [PATCH] Input: Added hovering capability</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30756</link>
    <description>&lt;pre&gt;
Applied, thanks.

&lt;/pre&gt;</description>
    <dc:creator>Dmitry Torokhov</dc:creator>
    <dc:date>2013-06-19T06:13:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30755">
    <title>Re: [PATCH v2 1/2] input: document gamepad API and add extra keycodes</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30755</link>
    <description>&lt;pre&gt;

I definitely need to have Dmitry's Ack for this. If he's OK with 1/2, I am 
fine with 2/2 patch for wiimote and will happily take it through my tree.

Thanks.


&lt;/pre&gt;</description>
    <dc:creator>Jiri Kosina</dc:creator>
    <dc:date>2013-06-18T23:30:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30754">
    <title>Re: [PATCH V3 3/5] arm: pxa: use matrix_keymap for all boards</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30754</link>
    <description>&lt;pre&gt;
Acked-by: Arnd Bergmann &amp;lt;arnd&amp;lt; at &amp;gt;arndb.de&amp;gt;

Thanks for the quick update.
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo&amp;lt; at &amp;gt;vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

&lt;/pre&gt;</description>
    <dc:creator>Arnd Bergmann</dc:creator>
    <dc:date>2013-06-18T14:02:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30753">
    <title>Re: [PATCH] input: stmpe: Fix the touchscreen interrupt handling</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30753</link>
    <description>&lt;pre&gt;Hi,


Absoluty, the feedback from the ST guys is completely imperative in this case.

Thank you!

Best regards,
Marek Vasut
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo&amp;lt; at &amp;gt;vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

&lt;/pre&gt;</description>
    <dc:creator>Marek Vasut</dc:creator>
    <dc:date>2013-06-18T12:01:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30752">
    <title>Re: [PATCH] HID: i2c-hid: add DT bindings</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30752</link>
    <description>&lt;pre&gt;

DT folks, any objections to this, please?

If not, I'd like to apply this for 3.11 into my tree.

Thanks.

&lt;/pre&gt;</description>
    <dc:creator>Jiri Kosina</dc:creator>
    <dc:date>2013-06-18T09:51:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30751">
    <title>Re: [PATCH] HID: roccat: check cdev_add return values</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30751</link>
    <description>&lt;pre&gt;

Applied, thanks.

&lt;/pre&gt;</description>
    <dc:creator>Jiri Kosina</dc:creator>
    <dc:date>2013-06-18T09:01:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30749">
    <title>Re: [PATCH] input: stmpe: Fix the touchscreen interrupt handling</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30749</link>
    <description>&lt;pre&gt;Hi Marek,

On Fri, May 17, 2013 at 01:25:11AM +0200, Marek Vasut wrote:
I am fine as long as we get feedback from Dmitry and the ST folks about
it.

Cheers,
Samuel.

&lt;/pre&gt;</description>
    <dc:creator>Samuel Ortiz</dc:creator>
    <dc:date>2013-06-18T08:50:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30748">
    <title>Re: [PATCH] input: cros_ec_keyb_clear_keyboard() depends on CONFIG_PM_SLEEP</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30748</link>
    <description>&lt;pre&gt;
FWIW, I also have it in my exotic-arch-fixes branch, now destined for 3.11.

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert&amp;lt; at &amp;gt;linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo&amp;lt; at &amp;gt;vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

&lt;/pre&gt;</description>
    <dc:creator>Geert Uytterhoeven</dc:creator>
    <dc:date>2013-06-18T08:39:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30746">
    <title>[PATCH] input/joystick: Fix for xpad driver support of "Mad Catz Street Fighter IV FightPad" controllers</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30746</link>
    <description>&lt;pre&gt;From: shawn joseph &amp;lt;jms.576&amp;lt; at &amp;gt;gmail.com&amp;gt;

Added MAP_TRIGGERS_TO_BUTTONS for Mad Catz Street Fighter IV FightPad
device. This controller model was already supported by the xpad
driver, but none of the buttons work correctly without this change.
Tested on kernel version 3.9.5.
Signed-off-by: shawn joseph &amp;lt;jms.576&amp;lt; at &amp;gt;gmail.com&amp;gt;
---
--- linux-3.9.5/drivers/input/
joystick/xpad.c.orig      2013-06-16 15:09:47.974170141 -0400
+++ linux-3.9.5/drivers/input/joystick/xpad.c   2013-06-16
15:10:24.070611282 -0400
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -137,7 +137,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static const struct xpad_device {
        { 0x0738, 0x4540, "Mad Catz Beat Pad", MAP_DPAD_TO_BUTTONS,
XTYPE_XBOX },
        { 0x0738, 0x4556, "Mad Catz Lynx Wireless Controller", 0, XTYPE_XBOX },
        { 0x0738, 0x4716, "Mad Catz Wired Xbox 360 Controller", 0,
XTYPE_XBOX360 },
-       { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad",
XTYPE_XBOX360 },
+       { 0x0738, 0x4728, "Mad Catz Street Fighter IV FightPad",
MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 },
        { 0x0738, 0x4738, "Mad &lt;/pre&gt;</description>
    <dc:creator>Shawn</dc:creator>
    <dc:date>2013-06-18T04:38:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30745">
    <title>[PATCH V3 2/5] arm: mmp: use matrix_keymap for all boards</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30745</link>
    <description>&lt;pre&gt;Compile passed for the configuration

pxa168_defconfig
  aspenite.c(MACH_ASPENITE), teton_bgs.c(MACH_TENTON_BGA)

Signed-off-by: Chao Xie &amp;lt;chao.xie&amp;lt; at &amp;gt;marvell.com&amp;gt;
---
 arch/arm/mach-mmp/aspenite.c  |   10 +++++++---
 arch/arm/mach-mmp/teton_bga.c |   10 +++++++---
 2 files changed, 14 insertions(+), 6 deletions(-)

diff --git a/arch/arm/mach-mmp/aspenite.c b/arch/arm/mach-mmp/aspenite.c
index 9f64d56..1e23346 100644
--- a/arch/arm/mach-mmp/aspenite.c
+++ b/arch/arm/mach-mmp/aspenite.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -205,7 +205,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; struct pxa168fb_mach_info aspenite_lcd_info = {
 .invert_pixclock= 0,
 };
 
-static unsigned int aspenite_matrix_key_map[] = {
+static const unsigned int aspenite_matrix_key_map[] = {
 KEY(0, 6, KEY_UP),/* SW 4 */
 KEY(0, 7, KEY_DOWN),/* SW 5 */
 KEY(1, 6, KEY_LEFT),/* SW 6 */
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -214,11 +214,15 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static unsigned int aspenite_matrix_key_map[] = {
 KEY(4, 7, KEY_ESC),/* SW 9 */
 };
 
+static struct matrix_keymap_data aspenite_matrix_keymap_data = {
+.keymap= aspenite_matrix_key_map,
+.keymap_siz&lt;/pre&gt;</description>
    <dc:creator>Chao Xie</dc:creator>
    <dc:date>2013-06-18T03:56:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.linux.kernel.input/30744">
    <title>[PATCH V3 0/5] input: pxa27x-keypad: enhancement and device tree support</title>
    <link>http://permalink.gmane.org/gmane.linux.kernel.input/30744</link>
    <description>&lt;pre&gt;The patches include 2 parts
1. use matrix_keypad for matrix keyes support
2. add device tree support for pxa27x-keypad

V2-&amp;gt;V1:
Do not copy the members from pdata. For device tree support,
directly allocate the pdata structure.

V3-&amp;gt;V2
add matrix_keypad changes for all boards using pxa27x-keypad
under mach-pxa.
The patch "arm: pxa: use matrix_keymap for all boards" is new.
The patch "arm: mmp: use matrix_keymap for all boards" merges
previous changes for aspenite and teton_bga.
All other patches are not modified.

Chao Xie (5):
  input: pxa27x-keypad: use matrix_keymap for matrix keyes
  arm: mmp: use matrix_keymap for all boards
  arm: pxa: use matrix_keymap for all boards
  input: pxa27x-keypad: remove the unused members at platform data
  input: pxa27x-keypad: add device tree support

 .../devicetree/bindings/input/pxa27x-keypad.txt    |   60 +++++
 arch/arm/mach-mmp/aspenite.c                       |   10 +-
 arch/arm/mach-mmp/teton_bga.c                      |   10 +-
 arch/arm/mach-pxa/em-x270.c       &lt;/pre&gt;</description>
    <dc:creator>Chao Xie</dc:creator>
    <dc:date>2013-06-18T03:56:13</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.linux.kernel.input">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.linux.kernel.input</link>
  </textinput>
</rdf:RDF>
