<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/input/touchscreen, branch v3.17</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/
</subtitle>
<id>https://git.shady.money/linux/atom?h=v3.17</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v3.17'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2014-09-10T17:27:31Z</updated>
<entry>
<title>Input: atmel_mxt_ts - fix double free of input device</title>
<updated>2014-09-10T17:27:31Z</updated>
<author>
<name>Stephen Warren</name>
<email>swarren@wwwdotorg.org</email>
</author>
<published>2014-09-10T17:01:10Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=58e4aeee39917c75da8e5dca0f1c42be8dc29f9e'/>
<id>urn:sha1:58e4aeee39917c75da8e5dca0f1c42be8dc29f9e</id>
<content type='text'>
[Nick Dyer: reworked to move free of input device into separate function
and only call in paths that require it.]
Signed-off-by: Nick Dyer &lt;nick.dyer@itdev.co.uk&gt;
Signed-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;
</content>
</entry>
<entry>
<title>Input: atmel_mxt_ts - downgrade warning about empty interrupts</title>
<updated>2014-09-09T23:52:15Z</updated>
<author>
<name>Nick Dyer</name>
<email>nick.dyer@itdev.co.uk</email>
</author>
<published>2014-09-09T18:24:21Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=651b4608811796ee6ddea5ce33e8db7ef6ea42b1'/>
<id>urn:sha1:651b4608811796ee6ddea5ce33e8db7ef6ea42b1</id>
<content type='text'>
In the case where the CHG/interrupt line mode is not configured correctly,
this warning is output to dmesg output for each interrupt. Downgrade the
message to debug.

Signed-off-by: Nick Dyer &lt;nick.dyer@itdev.co.uk&gt;
Signed-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;
</content>
</entry>
<entry>
<title>Input: wm971x - fix typo in module parameter description</title>
<updated>2014-09-09T23:52:09Z</updated>
<author>
<name>Masanari Iida</name>
<email>standby24x7@gmail.com</email>
</author>
<published>2014-09-09T18:23:10Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=31b2b16d3f356b0e463e603643d8b4b047ba2db8'/>
<id>urn:sha1:31b2b16d3f356b0e463e603643d8b4b047ba2db8</id>
<content type='text'>
Signed-off-by: Masanari Iida &lt;standby24x7@gmail.com&gt;
Signed-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'next' into for-linus</title>
<updated>2014-08-15T06:02:58Z</updated>
<author>
<name>Dmitry Torokhov</name>
<email>dmitry.torokhov@gmail.com</email>
</author>
<published>2014-08-15T06:02:58Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=91167e1914673972511617b6f4165bb12c3e0dcf'/>
<id>urn:sha1:91167e1914673972511617b6f4165bb12c3e0dcf</id>
<content type='text'>
Prepare second round of input updates for 3.17.
</content>
</entry>
<entry>
<title>Input: edt-ft5x06 - remove superfluous assignment</title>
<updated>2014-08-13T22:30:11Z</updated>
<author>
<name>Maks Naumov</name>
<email>maksqwe1@ukr.net</email>
</author>
<published>2014-08-13T22:27:52Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=3361a97601f243f1842bee6ca709e399f47b2ce3'/>
<id>urn:sha1:3361a97601f243f1842bee6ca709e399f47b2ce3</id>
<content type='text'>
Somehow we ended up with a duplicate line in edt_ft5x06_register_write()

Signed-off-by: Maks Naumov &lt;maksqwe1@ukr.net&gt;
Signed-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;
</content>
</entry>
<entry>
<title>Input: atmel_mxt_ts - fix a few issues reported by Coverity</title>
<updated>2014-08-13T16:16:11Z</updated>
<author>
<name>Dmitry Torokhov</name>
<email>dmitry.torokhov@gmail.com</email>
</author>
<published>2014-08-11T17:58:29Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=041fa15951d0fb349d24c5619f35de1878bd030e'/>
<id>urn:sha1:041fa15951d0fb349d24c5619f35de1878bd030e</id>
<content type='text'>
This should fix the following issues reported by Coverity:

*** CID 1230625:  Logically dead code  (DEADCODE)
/drivers/input/touchscreen/atmel_mxt_ts.c: 1692 in mxt_initialize()

*** CID 1230627:  Missing break in switch  (MISSING_BREAK)
/drivers/input/touchscreen/atmel_mxt_ts.c: 1436 in mxt_get_object_table()

*** CID 1230629:  Out-of-bounds write  (OVERRUN)
/drivers/input/touchscreen/atmel_mxt_ts.c: 1267 in mxt_update_cfg()

*** CID 1230632:  Unused pointer value  (UNUSED_VALUE)
/drivers/input/touchscreen/atmel_mxt_ts.c: 1211 in mxt_update_cfg()

Acked-by: Nick Dyer &lt;nick.dyer@itdev.co.uk&gt;
Signed-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;
</content>
</entry>
<entry>
<title>Input: atmel_mxt_ts - split config update a bit</title>
<updated>2014-08-13T16:16:11Z</updated>
<author>
<name>Dmitry Torokhov</name>
<email>dmitry.torokhov@gmail.com</email>
</author>
<published>2014-08-08T16:29:06Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=efdbd7ae44f35cbb2b29d825640b917723319f7b'/>
<id>urn:sha1:efdbd7ae44f35cbb2b29d825640b917723319f7b</id>
<content type='text'>
Let's split config update code a bit so it is hopefully a bit easier to
read. Also, the firmware update callback should be the entity releasing
firmware blob, not lower layers.

Signed-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;
Signed-off-by: Nick Dyer &lt;nick.dyer@itdev.co.uk&gt;
</content>
</entry>
<entry>
<title>Input: atmel_mxt_ts - simplify mxt_initialize a bit</title>
<updated>2014-08-13T16:16:10Z</updated>
<author>
<name>Dmitry Torokhov</name>
<email>dmitry.torokhov@gmail.com</email>
</author>
<published>2014-08-08T16:28:45Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=6cd1ab0fb67f21e6e35eee35106d8dd2f08b544c'/>
<id>urn:sha1:6cd1ab0fb67f21e6e35eee35106d8dd2f08b544c</id>
<content type='text'>
I think having control flow with 2 goto/labels/flags is quite hard to read,
this version is a bit more readable IMO.

Signed-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;
Signed-off-by: Nick Dyer &lt;nick.dyer@itdev.co.uk&gt;
</content>
</entry>
<entry>
<title>Input: atmel_mxt_ts - mXT224 DMA quirk was fixed in firmware v2.0.AA</title>
<updated>2014-08-08T06:36:32Z</updated>
<author>
<name>Nick Dyer</name>
<email>nick.dyer@itdev.co.uk</email>
</author>
<published>2014-08-07T16:56:01Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=437d4f3797041942947ec838cf5d65f770562c5d'/>
<id>urn:sha1:437d4f3797041942947ec838cf5d65f770562c5d</id>
<content type='text'>
Signed-off-by: Nick Dyer &lt;nick.dyer@itdev.co.uk&gt;
Signed-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'next' into for-linus</title>
<updated>2014-08-07T06:36:12Z</updated>
<author>
<name>Dmitry Torokhov</name>
<email>dmitry.torokhov@gmail.com</email>
</author>
<published>2014-08-07T06:36:12Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=5e2aa2ed08e2e280121dc7cf5609c87d464f12ef'/>
<id>urn:sha1:5e2aa2ed08e2e280121dc7cf5609c87d464f12ef</id>
<content type='text'>
Prepare first round of input updates for 3.17.
</content>
</entry>
</feed>
