<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/sound, branch v3.15</title>
<subtitle>Linux kernel source tree</subtitle>
<id>https://git.amat.us/linux/atom/sound?h=v3.15</id>
<link rel='self' href='https://git.amat.us/linux/atom/sound?h=v3.15'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/'/>
<updated>2014-06-02T14:48:28Z</updated>
<entry>
<title>ALSA: hda/realtek - Fix COEF widget NID for ALC260 replacer fixup</title>
<updated>2014-06-02T14:48:28Z</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2014-06-02T13:16:07Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=192a98e280e560510a62aca8cfa83b4ae7c095bb'/>
<id>urn:sha1:192a98e280e560510a62aca8cfa83b4ae7c095bb</id>
<content type='text'>
The conversion to a fixup table for Replacer model with ALC260 in
commit 20f7d928 took the wrong widget NID for COEF setups.  Namely,
NID 0x1a should have been used instead of NID 0x20, which is the
common node for all Realtek codecs but ALC260.

Fixes: 20f7d928fa6e ('ALSA: hda/realtek - Replace ALC260 model=replacer with the auto-parser')
Cc: &lt;stable@vger.kernel.org&gt; [v3.4+]
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
</content>
</entry>
<entry>
<title>ALSA: hda/realtek - Correction of fixup codes for PB V7900 laptop</title>
<updated>2014-06-02T14:46:31Z</updated>
<author>
<name>Ronan Marquet</name>
<email>ronan.marquet@orange.fr</email>
</author>
<published>2014-06-01T16:38:53Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=e30cf2d2bed3aed74a651c64de323ba26e4ff7d0'/>
<id>urn:sha1:e30cf2d2bed3aed74a651c64de323ba26e4ff7d0</id>
<content type='text'>
Correcion of wrong fixup entries add in commit ca8f0424 to replace
static model quirk for PB V7900 laptop (will model).

[note: the removal of ALC260_FIXUP_HP_PIN_0F chain is also needed as a
 part of the fix; otherwise the pin is set up wrongly as a headphone,
 and user-space (PulseAudio) may be wrongly trying to detect the jack
 state -- tiwai]

Fixes: ca8f04247eaa ('ALSA: hda/realtek - Add the fixup codes for ALC260 model=will')
Signed-off-by: Ronan Marquet &lt;ronan.marquet@orange.fr&gt;
Cc: &lt;stable@vger.kernel.org&gt; [v3.4+]
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
</content>
</entry>
<entry>
<title>ALSA: hda/analog - Fix silent output on ASUS A8JN</title>
<updated>2014-05-30T10:07:12Z</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2014-05-23T07:21:06Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=598e306184d26fa1d546334f2eb370b4d94a4ad3'/>
<id>urn:sha1:598e306184d26fa1d546334f2eb370b4d94a4ad3</id>
<content type='text'>
ASUS A8JN with AD1986A codec seems following the normal EAPD in the
normal order (0 = off, 1 = on) unlike other machines with AD1986A.
Apply the workaround used for Toshiba laptop that showed the same
problem.

Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=75041
Cc: &lt;stable@vger.kernel.org&gt; [3.11+]
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
</content>
</entry>
<entry>
<title>ALSA: hda - Fix onboard audio on Intel H97/Z97 chipsets</title>
<updated>2014-05-23T07:09:26Z</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2014-05-23T07:02:44Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=77f07800cb456bed6e5c345e6e4e83e8eda62437'/>
<id>urn:sha1:77f07800cb456bed6e5c345e6e4e83e8eda62437</id>
<content type='text'>
The recent Intel H97/Z97 chipsets need the similar setups like other
Intel chipsets for snooping, etc.  Especially without snooping, the
audio playback stutters or gets corrupted.  This fix patch just adds
the corresponding PCI ID entry with the proper flags.

Reported-and-tested-by: Arthur Borsboom &lt;arthurborsboom@gmail.com&gt;
Cc: &lt;stable@vger.kernel.org&gt;
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
</content>
</entry>
<entry>
<title>ALSA: pcm_dmaengine: Add check during device suspend</title>
<updated>2014-05-19T09:31:24Z</updated>
<author>
<name>Tushar Behera</name>
<email>tushar.behera@linaro.org</email>
</author>
<published>2014-05-19T09:23:53Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=02fb05a598e9393382f55132a36aff84f4d76ad5'/>
<id>urn:sha1:02fb05a598e9393382f55132a36aff84f4d76ad5</id>
<content type='text'>
Currently snd_dmaengine_pcm_trigger() calls dmaengine_pause()
unconditinally during device suspend. In case where DMA controller
doesn't support PAUSE/RESUME functionality, this call is not able
to stop the DMA controller. In this scenario, audio playback doesn't
resume after device resume.

Calling dmaengine_pause/dmaengine_terminate_all conditionally fixes
the issue.

It has been tested with audio playback on Samsung platform having
PL330 DMA controller which doesn't support PAUSE/RESUME.

Signed-off-by: Tushar Behera &lt;tushar.behera@linaro.org&gt;
Acked-by: Lars-Peter Clausen &lt;lars@metafoo.de&gt;
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
</content>
</entry>
<entry>
<title>ALSA: sb_mixer: missing return statement</title>
<updated>2014-05-14T14:46:48Z</updated>
<author>
<name>Dan Carpenter</name>
<email>dan.carpenter@oracle.com</email>
</author>
<published>2014-05-14T13:32:21Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=665ebe926e7b714369b5329d48745bfef17db512'/>
<id>urn:sha1:665ebe926e7b714369b5329d48745bfef17db512</id>
<content type='text'>
The if condition here was supposed to return on error but the return
statement is missing.  The effect is that the -&gt;mixername is set to
"???" instead of "DT019X".

Signed-off-by: Dan Carpenter &lt;dan.carpenter@oracle.com&gt;
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
</content>
</entry>
<entry>
<title>Merge tag 'asoc-v3.15-rc5-intel' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
<updated>2014-05-14T12:27:12Z</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2014-05-14T12:27:12Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=ff2354bc6e54cc7e024744b7b4065a081fd87f6e'/>
<id>urn:sha1:ff2354bc6e54cc7e024744b7b4065a081fd87f6e</id>
<content type='text'>
ASoC: Intel fixes for v3.15

This is a relatively large batch of fixes for the newly added
Haswell/Baytrail drivers from Intel.  It's a bit larger than is good for
this point in the cycle but it's all for a newly added driver so not so
worrying as it might otherwise be.  Some of it's integration problems,
some of it's the sort of problem usually turned up in stress tests.
</content>
</entry>
<entry>
<title>Merge tag 'asoc-v3.15-rc5-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
<updated>2014-05-14T12:24:09Z</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2014-05-14T12:24:09Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=7ca33c7a1d7f8566d8b08a0df55b26758d985a15'/>
<id>urn:sha1:7ca33c7a1d7f8566d8b08a0df55b26758d985a15</id>
<content type='text'>
ASoC: Driver fixes for v3.15

A small set of driver fixes, nothing remarkable in itself or of any
relevance outside of the driver.
</content>
</entry>
<entry>
<title>Merge tag 'asoc-v3.15-rc5-core' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
<updated>2014-05-14T12:23:48Z</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2014-05-14T12:23:48Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=927cdab3b6fe7e32990f5563d295eedfc355be6d'/>
<id>urn:sha1:927cdab3b6fe7e32990f5563d295eedfc355be6d</id>
<content type='text'>
ASoC: Core fixes for v3.15

A few things here:

 - Fix the creation of spurious CODEC&lt;-&gt;CODEC links which caused DAPM to
   have audio paths which shouldn't be present causing spurious powerups
   and potential audible issues for users.
 - Ensure the suspend-&gt;off transition doesn't have spurious transitions
   to prepare added to the sequence.
 - Fix incorrect skipping of PCM suspension for active audio streams.
 - Remove Timur Tabi from the CS4270 maintainers, Cirrus are now doing
   this and Timur no longer has the boards that he was using.
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'asoc/fix/pcm' into asoc-linus</title>
<updated>2014-05-14T11:52:41Z</updated>
<author>
<name>Mark Brown</name>
<email>broonie@linaro.org</email>
</author>
<published>2014-05-14T11:52:41Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=cf86197ec5655ed1f54f1f7ba34a01d576e3737d'/>
<id>urn:sha1:cf86197ec5655ed1f54f1f7ba34a01d576e3737d</id>
<content type='text'>
</content>
</entry>
</feed>
