<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/platform, branch v3.5</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.5</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v3.5'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2012-06-26T18:43:53Z</updated>
<entry>
<title>intel_ips: blacklist HP ProBook laptops</title>
<updated>2012-06-26T18:43:53Z</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2012-06-25T13:07:17Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=88ca518b0bb4161e5f20f8a1d9cc477cae294e54'/>
<id>urn:sha1:88ca518b0bb4161e5f20f8a1d9cc477cae294e54</id>
<content type='text'>
intel_ips driver spews the warning message
  "ME failed to update for more than 1s, likely hung"
at each second endlessly on HP ProBook laptops with IronLake.

As this has never worked, better to blacklist the driver for now.

Cc: &lt;stable@vger.kernel.org&gt;
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Matthew Garrett &lt;mjg@redhat.com&gt;
</content>
</entry>
<entry>
<title>ideapad: uninitialized data in ideapad_acpi_add()</title>
<updated>2012-06-26T18:43:45Z</updated>
<author>
<name>Dan Carpenter</name>
<email>dan.carpenter@oracle.com</email>
</author>
<published>2012-06-12T16:28:50Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=57f9616b79549e772cf4dd3aa1d2df5b6c8acdfa'/>
<id>urn:sha1:57f9616b79549e772cf4dd3aa1d2df5b6c8acdfa</id>
<content type='text'>
We only initialize the high bits of "cfg".  It probably doesn't cause
a problem given that this is platform specific code and doesn't have to
worry about endianness etc.  But it's sort of messy.

Signed-off-by: Dan Carpenter &lt;dan.carpenter@oracle.com&gt;
Signed-off-by: Matthew Garrett &lt;mjg@redhat.com&gt;
</content>
</entry>
<entry>
<title>sony-laptop: correct find_snc_handle failure checks</title>
<updated>2012-06-26T18:43:39Z</updated>
<author>
<name>Mattia Dongili</name>
<email>malattia@linux.it</email>
</author>
<published>2012-06-13T21:36:02Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=a1071a5abf1f4d4a7f8324e21b8b32b1342013c7'/>
<id>urn:sha1:a1071a5abf1f4d4a7f8324e21b8b32b1342013c7</id>
<content type='text'>
Since bab7084c745bf4d75b760728387f375fd34dc683, find_snc_handle
returns -EINVAL, not -1.

Signed-off-by: Mattia Dongili &lt;malattia@linux.it&gt;
Signed-off-by: Matthew Garrett &lt;mjg@redhat.com&gt;
</content>
</entry>
<entry>
<title>sony-laptop: fix a couple signedness bugs</title>
<updated>2012-06-26T18:43:33Z</updated>
<author>
<name>Dan Carpenter</name>
<email>dan.carpenter@oracle.com</email>
</author>
<published>2012-06-09T04:18:14Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=56f4a9f76d8ce7c7cef92905c909aad0c7e5c9db'/>
<id>urn:sha1:56f4a9f76d8ce7c7cef92905c909aad0c7e5c9db</id>
<content type='text'>
This needs to be signed to handle negative error codes.
Remove a redundant check, read_limits is always called with a valid
handle.

Signed-off-by: Dan Carpenter &lt;dan.carpenter@oracle.com&gt;
Signed-off-by: Mattia Dongili &lt;malattia@linux.it&gt;
Signed-off-by: Matthew Garrett &lt;mjg@redhat.com&gt;
</content>
</entry>
<entry>
<title>sony-laptop: fix sony_nc_sysfs_store()</title>
<updated>2012-06-26T18:43:27Z</updated>
<author>
<name>Dan Carpenter</name>
<email>dan.carpenter@oracle.com</email>
</author>
<published>2012-06-09T04:18:13Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=c7a2918373983b32db3ca35823d930641747e26f'/>
<id>urn:sha1:c7a2918373983b32db3ca35823d930641747e26f</id>
<content type='text'>
We made this an unsigned long and it causes a bug on 64 bit big endian
systems when we try to pass the value to sony_nc_int_call().

Also value has to be signed because validate() returns negative error
codes.

Signed-off-by: Dan Carpenter &lt;dan.carpenter@oracle.com&gt;
Signed-off-by: Mattia Dongili &lt;malattia@linux.it&gt;
Signed-off-by: Matthew Garrett &lt;mjg@redhat.com&gt;
</content>
</entry>
<entry>
<title>sony-laptop: input initialization should be done before SNC</title>
<updated>2012-06-26T18:43:21Z</updated>
<author>
<name>Mattia Dongili</name>
<email>malattia@linux.it</email>
</author>
<published>2012-06-09T04:18:12Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=ca3c2c706de39b3400e57254dce054bf7350efa2'/>
<id>urn:sha1:ca3c2c706de39b3400e57254dce054bf7350efa2</id>
<content type='text'>
SNC needs input devices so better have those ready before starting
handle events.

Signed-off-by: Mattia Dongili &lt;malattia@linux.it&gt;
Signed-off-by: Matthew Garrett &lt;mjg@redhat.com&gt;
</content>
</entry>
<entry>
<title>sony-laptop: add lid backlight support for handle 0x143</title>
<updated>2012-06-26T18:43:16Z</updated>
<author>
<name>Mattia Dongili</name>
<email>malattia@linux.it</email>
</author>
<published>2012-06-09T04:18:11Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=014fc8fbece33d42e2aa92d289fffa213a159321'/>
<id>urn:sha1:014fc8fbece33d42e2aa92d289fffa213a159321</id>
<content type='text'>
Signed-off-by: Mattia Dongili &lt;malattia@linux.it&gt;
Signed-off-by: Matthew Garrett &lt;mjg@redhat.com&gt;
</content>
</entry>
<entry>
<title>sony-laptop: store battery care limits on batteries</title>
<updated>2012-06-26T18:43:11Z</updated>
<author>
<name>Mattia Dongili</name>
<email>malattia@linux.it</email>
</author>
<published>2012-06-10T22:18:31Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=15aa5c75468a103cdee1a0e0ec26aad979bf71a5'/>
<id>urn:sha1:15aa5c75468a103cdee1a0e0ec26aad979bf71a5</id>
<content type='text'>
Some models offer the option to store the limits on the battery
(firmware?).

Signed-off-by: Mattia Dongili &lt;malattia@linux.it&gt;
Signed-off-by: Matthew Garrett &lt;mjg@redhat.com&gt;
</content>
</entry>
<entry>
<title>sony-laptop: notify userspace of GFX switch position changes</title>
<updated>2012-06-26T18:43:05Z</updated>
<author>
<name>Marco Chiappero</name>
<email>marco@absence.it</email>
</author>
<published>2012-06-09T04:18:09Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=bb384b5295323ed58260aeaff22d8bbe32988396'/>
<id>urn:sha1:bb384b5295323ed58260aeaff22d8bbe32988396</id>
<content type='text'>
Some Vaios come with both integrated and discrete graphics, plus a
switch for choosing one of the two. When the switch position is changed,
a notification is generated.

Signed-off-by: Marco Chiappero &lt;marco@absence.it&gt;
Signed-off-by: Mattia Dongili &lt;malattia@linux.it&gt;
Signed-off-by: Matthew Garrett &lt;mjg@redhat.com&gt;
</content>
</entry>
<entry>
<title>sony-laptop: use an enum for SNC event types</title>
<updated>2012-06-26T18:42:59Z</updated>
<author>
<name>Mattia Dongili</name>
<email>malattia@linux.it</email>
</author>
<published>2012-06-09T04:18:08Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=4069d6f86bebce1a1e3456ef721511b4b81958f8'/>
<id>urn:sha1:4069d6f86bebce1a1e3456ef721511b4b81958f8</id>
<content type='text'>
Signed-off-by: Mattia Dongili &lt;malattia@linux.it&gt;
Signed-off-by: Matthew Garrett &lt;mjg@redhat.com&gt;
</content>
</entry>
</feed>
