* [PATCH] ALSA: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out
@ 2015-06-24 8:46 David Henningsson
2015-06-24 9:00 ` Takashi Iwai
0 siblings, 1 reply; 9+ messages in thread
From: David Henningsson @ 2015-06-24 8:46 UTC (permalink / raw)
To: alsa-devel, tiwai; +Cc: David Henningsson, stable
Thinkpad X250, when attached to a dock, has two headphone outs but
no line out. Make sure we don't try to turn this into one headphone
and one line out (since that disables the headphone amp on the dock).
Alsa-info at http://www.alsa-project.org/db/?f=36f8764e1d782397928feec715d0ef90dfddd4c1
Cc: stable@vger.kernel.org
Signed-off-by: David Henningsson <david.henningsson@canonical.com>
---
sound/pci/hda/patch_realtek.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 431a20b..8e02cdf 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -4511,6 +4511,7 @@ enum {
ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
ALC292_FIXUP_TPT440_DOCK,
+ ALC292_FIXUP_TPT440_DOCK2,
ALC283_FIXUP_BXBT2807_MIC,
ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED,
ALC282_FIXUP_ASPIRE_V5_PINS,
@@ -4960,6 +4961,12 @@ static const struct hda_fixup alc269_fixups[] = {
.chain_id = ALC269_FIXUP_HEADSET_MODE
},
[ALC292_FIXUP_TPT440_DOCK] = {
+ .type = HDA_FIXUP_FUNC,
+ .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
+ .chained = true,
+ .chain_id = ALC292_FIXUP_TPT440_DOCK2
+ },
+ [ALC292_FIXUP_TPT440_DOCK2] = {
.type = HDA_FIXUP_PINS,
.v.pins = (const struct hda_pintbl[]) {
{ 0x16, 0x21211010 }, /* dock headphone */
--
1.9.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH] ALSA: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out
2015-06-24 8:46 [PATCH] ALSA: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out David Henningsson
@ 2015-06-24 9:00 ` Takashi Iwai
2015-06-24 11:06 ` David Henningsson
0 siblings, 1 reply; 9+ messages in thread
From: Takashi Iwai @ 2015-06-24 9:00 UTC (permalink / raw)
To: David Henningsson; +Cc: alsa-devel, stable
At Wed, 24 Jun 2015 10:46:33 +0200,
David Henningsson wrote:
>
> Thinkpad X250, when attached to a dock, has two headphone outs but
> no line out. Make sure we don't try to turn this into one headphone
> and one line out (since that disables the headphone amp on the dock).
>
> Alsa-info at http://www.alsa-project.org/db/?f=36f8764e1d782397928feec715d0ef90dfddd4c1
>
> Cc: stable@vger.kernel.org
> Signed-off-by: David Henningsson <david.henningsson@canonical.com>
This is one of fixes I had in mind (and asked for testing in bugzilla
kernel.org report). One drawback by this is that the auto-mute
*between* the headphones won't work like before. If one has expected
it, then this can be seen as a regression.
Another fix was to change this as a proper line-out. This will keep
the current auto-mute behavior.
OTOH, dealing both jacks equally is also not bad, per se.
Takashi
> ---
> sound/pci/hda/patch_realtek.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
> index 431a20b..8e02cdf 100644
> --- a/sound/pci/hda/patch_realtek.c
> +++ b/sound/pci/hda/patch_realtek.c
> @@ -4511,6 +4511,7 @@ enum {
> ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
> ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
> ALC292_FIXUP_TPT440_DOCK,
> + ALC292_FIXUP_TPT440_DOCK2,
> ALC283_FIXUP_BXBT2807_MIC,
> ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED,
> ALC282_FIXUP_ASPIRE_V5_PINS,
> @@ -4960,6 +4961,12 @@ static const struct hda_fixup alc269_fixups[] = {
> .chain_id = ALC269_FIXUP_HEADSET_MODE
> },
> [ALC292_FIXUP_TPT440_DOCK] = {
> + .type = HDA_FIXUP_FUNC,
> + .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
> + .chained = true,
> + .chain_id = ALC292_FIXUP_TPT440_DOCK2
> + },
> + [ALC292_FIXUP_TPT440_DOCK2] = {
> .type = HDA_FIXUP_PINS,
> .v.pins = (const struct hda_pintbl[]) {
> { 0x16, 0x21211010 }, /* dock headphone */
> --
> 1.9.1
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] ALSA: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out
2015-06-24 9:00 ` Takashi Iwai
@ 2015-06-24 11:06 ` David Henningsson
2015-06-24 11:23 ` Raymond Yau
2015-06-24 12:10 ` Takashi Iwai
0 siblings, 2 replies; 9+ messages in thread
From: David Henningsson @ 2015-06-24 11:06 UTC (permalink / raw)
To: Takashi Iwai; +Cc: alsa-devel, stable
On 2015-06-24 11:00, Takashi Iwai wrote:
> At Wed, 24 Jun 2015 10:46:33 +0200,
> David Henningsson wrote:
>>
>> Thinkpad X250, when attached to a dock, has two headphone outs but
>> no line out. Make sure we don't try to turn this into one headphone
>> and one line out (since that disables the headphone amp on the dock).
>>
>> Alsa-info at http://www.alsa-project.org/db/?f=36f8764e1d782397928feec715d0ef90dfddd4c1
>>
>> Cc: stable@vger.kernel.org
>> Signed-off-by: David Henningsson <david.henningsson@canonical.com>
>
> This is one of fixes I had in mind (and asked for testing in bugzilla
> kernel.org report).
Sorry, I'm missing context. What report?
> One drawback by this is that the auto-mute
> *between* the headphones won't work like before. If one has expected
> it, then this can be seen as a regression.
Fair enough, we can drop stable from the patch since this could be seen
as behavioural change rather than bug fix.
> Another fix was to change this as a proper line-out. This will keep
> the current auto-mute behavior.
>
> OTOH, dealing both jacks equally is also not bad, per se.
The tricky thing about routing is that everyone wants it different, so
pleasing everyone seems to be an impossible equation :-/
I would choose the default behaviour (headphone or line out) based on
the icon on the jack. I should double-check that with someone who has
the hardware. And then, if someone wants another behaviour then
hdajackretask can be used. Or we can add a jack mode kcontrol for that
jack, if you prefer, although I'd have to check how PulseAudio handles
that (not that well, is my gut feeling).
--
David Henningsson, Canonical Ltd.
https://launchpad.net/~diwic
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] ALSA: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out
2015-06-24 11:06 ` David Henningsson
@ 2015-06-24 11:23 ` Raymond Yau
2015-06-24 11:40 ` [alsa-devel] " David Henningsson
2015-06-24 12:10 ` Takashi Iwai
1 sibling, 1 reply; 9+ messages in thread
From: Raymond Yau @ 2015-06-24 11:23 UTC (permalink / raw)
To: David Henningsson; +Cc: Takashi Iwai, ALSA Development Mailing List, stable
>>>
>>> Thinkpad X250, when attached to a dock, has two headphone outs but
>>> no line out. Make sure we don't try to turn this into one headphone
>>> and one line out (since that disables the headphone amp on the dock).
>>>
>>> Alsa-info at
http://www.alsa-project.org/db/?f=36f8764e1d782397928feec715d0ef90dfddd4c1
>>>
>>> Cc: stable@vger.kernel.org
>>> Signed-off-by: David Henningsson <david.henningsson@canonical.com>
>>
>>
>> This is one of fixes I had in mind (and asked for testing in bugzilla
>> kernel.org report).
>
>
> Sorry, I'm missing context. What report?
https://bugzilla.kernel.org/show_bug.cgi?id=99721
T440 support headset and thinkpad pro dock combo jack has headset icon
If headset mic has higher priority than dock headset mic, it is strange
that headset don't auto mute dock headset
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [alsa-devel] [PATCH] ALSA: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out
2015-06-24 11:23 ` Raymond Yau
@ 2015-06-24 11:40 ` David Henningsson
0 siblings, 0 replies; 9+ messages in thread
From: David Henningsson @ 2015-06-24 11:40 UTC (permalink / raw)
To: Raymond Yau; +Cc: ALSA Development Mailing List, Takashi Iwai, stable
On 2015-06-24 13:23, Raymond Yau wrote:
>
> >>>
> >>> Thinkpad X250, when attached to a dock, has two headphone outs but
> >>> no line out. Make sure we don't try to turn this into one headphone
> >>> and one line out (since that disables the headphone amp on the dock).
> >>>
> >>> Alsa-info at
> http://www.alsa-project.org/db/?f=36f8764e1d782397928feec715d0ef90dfddd4c1
> >>>
> >>> Cc: stable@vger.kernel.org <mailto:stable@vger.kernel.org>
> >>> Signed-off-by: David Henningsson <david.henningsson@canonical.com
> <mailto:david.henningsson@canonical.com>>
> >>
> >>
> >> This is one of fixes I had in mind (and asked for testing in bugzilla
> >> kernel.org <http://kernel.org> report).
> >
> >
> > Sorry, I'm missing context. What report?
>
> https://bugzilla.kernel.org/show_bug.cgi?id=99721
Thanks.
> T440 support headset and thinkpad pro dock combo jack has headset icon
>
> If headset mic has higher priority than dock headset mic, it is strange
> that headset don't auto mute dock headset
So headphones should automute between each other if and only if both of
them are combined headset jacks? Or what do you suggest?
--
David Henningsson, Canonical Ltd.
https://launchpad.net/~diwic
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] ALSA: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out
2015-06-24 11:06 ` David Henningsson
2015-06-24 11:23 ` Raymond Yau
@ 2015-06-24 12:10 ` Takashi Iwai
2015-06-24 12:33 ` David Henningsson
1 sibling, 1 reply; 9+ messages in thread
From: Takashi Iwai @ 2015-06-24 12:10 UTC (permalink / raw)
To: David Henningsson; +Cc: alsa-devel, stable
At Wed, 24 Jun 2015 13:06:05 +0200,
David Henningsson wrote:
>
>
>
> On 2015-06-24 11:00, Takashi Iwai wrote:
> > At Wed, 24 Jun 2015 10:46:33 +0200,
> > David Henningsson wrote:
> >>
> >> Thinkpad X250, when attached to a dock, has two headphone outs but
> >> no line out. Make sure we don't try to turn this into one headphone
> >> and one line out (since that disables the headphone amp on the dock).
> >>
> >> Alsa-info at http://www.alsa-project.org/db/?f=36f8764e1d782397928feec715d0ef90dfddd4c1
> >>
> >> Cc: stable@vger.kernel.org
> >> Signed-off-by: David Henningsson <david.henningsson@canonical.com>
> >
> > This is one of fixes I had in mind (and asked for testing in bugzilla
> > kernel.org report).
>
> Sorry, I'm missing context. What report?
>
> > One drawback by this is that the auto-mute
> > *between* the headphones won't work like before. If one has expected
> > it, then this can be seen as a regression.
>
> Fair enough, we can drop stable from the patch since this could be seen
> as behavioural change rather than bug fix.
>
> > Another fix was to change this as a proper line-out. This will keep
> > the current auto-mute behavior.
> >
> > OTOH, dealing both jacks equally is also not bad, per se.
>
> The tricky thing about routing is that everyone wants it different, so
> pleasing everyone seems to be an impossible equation :-/
>
> I would choose the default behaviour (headphone or line out) based on
> the icon on the jack. I should double-check that with someone who has
> the hardware. And then, if someone wants another behaviour then
> hdajackretask can be used. Or we can add a jack mode kcontrol for that
> jack, if you prefer, although I'd have to check how PulseAudio handles
> that (not that well, is my gut feeling).
I have no preference in this regard. My only slight concern was the
behavior change by this patch. It has both sides, one can see as an
improvement while another as a regression.
Currently I'm inclined to take this patch as is, since this would make
things working in a little obstacle. Once when we get a real
regression report due to the lack of exclusive mute control, we may
provide another model option as a compromise.
But, I'm open about this, really. So, if anyone has a good argument,
let me know.
thanks,
Takashi
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] ALSA: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out
2015-06-24 12:10 ` Takashi Iwai
@ 2015-06-24 12:33 ` David Henningsson
2015-06-24 13:23 ` Takashi Iwai
0 siblings, 1 reply; 9+ messages in thread
From: David Henningsson @ 2015-06-24 12:33 UTC (permalink / raw)
To: Takashi Iwai; +Cc: alsa-devel, stable
On 2015-06-24 14:10, Takashi Iwai wrote:
> At Wed, 24 Jun 2015 13:06:05 +0200,
> David Henningsson wrote:
>>
>>
>>
>> On 2015-06-24 11:00, Takashi Iwai wrote:
>>> At Wed, 24 Jun 2015 10:46:33 +0200,
>>> David Henningsson wrote:
>>>>
>>>> Thinkpad X250, when attached to a dock, has two headphone outs but
>>>> no line out. Make sure we don't try to turn this into one headphone
>>>> and one line out (since that disables the headphone amp on the dock).
>>>>
>>>> Alsa-info at http://www.alsa-project.org/db/?f=36f8764e1d782397928feec715d0ef90dfddd4c1
>>>>
>>>> Cc: stable@vger.kernel.org
>>>> Signed-off-by: David Henningsson <david.henningsson@canonical.com>
>>>
>>> This is one of fixes I had in mind (and asked for testing in bugzilla
>>> kernel.org report).
>>
>> Sorry, I'm missing context. What report?
>>
>>> One drawback by this is that the auto-mute
>>> *between* the headphones won't work like before. If one has expected
>>> it, then this can be seen as a regression.
>>
>> Fair enough, we can drop stable from the patch since this could be seen
>> as behavioural change rather than bug fix.
>>
>>> Another fix was to change this as a proper line-out. This will keep
>>> the current auto-mute behavior.
>>>
>>> OTOH, dealing both jacks equally is also not bad, per se.
>>
>> The tricky thing about routing is that everyone wants it different, so
>> pleasing everyone seems to be an impossible equation :-/
>>
>> I would choose the default behaviour (headphone or line out) based on
>> the icon on the jack. I should double-check that with someone who has
>> the hardware. And then, if someone wants another behaviour then
>> hdajackretask can be used. Or we can add a jack mode kcontrol for that
>> jack, if you prefer, although I'd have to check how PulseAudio handles
>> that (not that well, is my gut feeling).
>
> I have no preference in this regard. My only slight concern was the
> behavior change by this patch. It has both sides, one can see as an
> improvement while another as a regression.
>
> Currently I'm inclined to take this patch as is, since this would make
> things working in a little obstacle. Once when we get a real
> regression report due to the lack of exclusive mute control, we may
> provide another model option as a compromise.
>
> But, I'm open about this, really. So, if anyone has a good argument,
> let me know.
Anyhow, it looks like the current behaviour is not good, because we have
a "Dock Headphone Jack" on the same node as "Dock Line Out Playback
Switch". This makes me wonder if the HP -> LO fixup should be removed
altogether. Are there any machines these days that needs this fixup? In
case there were just a few of them in the past, maybe they should have
pin fixups instead?
--
David Henningsson, Canonical Ltd.
https://launchpad.net/~diwic
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] ALSA: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out
2015-06-24 12:33 ` David Henningsson
@ 2015-06-24 13:23 ` Takashi Iwai
2015-06-25 7:00 ` Takashi Iwai
0 siblings, 1 reply; 9+ messages in thread
From: Takashi Iwai @ 2015-06-24 13:23 UTC (permalink / raw)
To: David Henningsson; +Cc: alsa-devel, stable
At Wed, 24 Jun 2015 14:33:52 +0200,
David Henningsson wrote:
>
>
>
> On 2015-06-24 14:10, Takashi Iwai wrote:
> > At Wed, 24 Jun 2015 13:06:05 +0200,
> > David Henningsson wrote:
> >>
> >>
> >>
> >> On 2015-06-24 11:00, Takashi Iwai wrote:
> >>> At Wed, 24 Jun 2015 10:46:33 +0200,
> >>> David Henningsson wrote:
> >>>>
> >>>> Thinkpad X250, when attached to a dock, has two headphone outs but
> >>>> no line out. Make sure we don't try to turn this into one headphone
> >>>> and one line out (since that disables the headphone amp on the dock).
> >>>>
> >>>> Alsa-info at http://www.alsa-project.org/db/?f=36f8764e1d782397928feec715d0ef90dfddd4c1
> >>>>
> >>>> Cc: stable@vger.kernel.org
> >>>> Signed-off-by: David Henningsson <david.henningsson@canonical.com>
> >>>
> >>> This is one of fixes I had in mind (and asked for testing in bugzilla
> >>> kernel.org report).
> >>
> >> Sorry, I'm missing context. What report?
> >>
> >>> One drawback by this is that the auto-mute
> >>> *between* the headphones won't work like before. If one has expected
> >>> it, then this can be seen as a regression.
> >>
> >> Fair enough, we can drop stable from the patch since this could be seen
> >> as behavioural change rather than bug fix.
> >>
> >>> Another fix was to change this as a proper line-out. This will keep
> >>> the current auto-mute behavior.
> >>>
> >>> OTOH, dealing both jacks equally is also not bad, per se.
> >>
> >> The tricky thing about routing is that everyone wants it different, so
> >> pleasing everyone seems to be an impossible equation :-/
> >>
> >> I would choose the default behaviour (headphone or line out) based on
> >> the icon on the jack. I should double-check that with someone who has
> >> the hardware. And then, if someone wants another behaviour then
> >> hdajackretask can be used. Or we can add a jack mode kcontrol for that
> >> jack, if you prefer, although I'd have to check how PulseAudio handles
> >> that (not that well, is my gut feeling).
> >
> > I have no preference in this regard. My only slight concern was the
> > behavior change by this patch. It has both sides, one can see as an
> > improvement while another as a regression.
> >
> > Currently I'm inclined to take this patch as is, since this would make
> > things working in a little obstacle. Once when we get a real
> > regression report due to the lack of exclusive mute control, we may
> > provide another model option as a compromise.
> >
> > But, I'm open about this, really. So, if anyone has a good argument,
> > let me know.
>
> Anyhow, it looks like the current behaviour is not good, because we have
> a "Dock Headphone Jack" on the same node as "Dock Line Out Playback
> Switch". This makes me wonder if the HP -> LO fixup should be removed
> altogether. Are there any machines these days that needs this fixup? In
> case there were just a few of them in the past, maybe they should have
> pin fixups instead?
Yes, this is one good step forward. We should check through hda-emu.
Though, for the problem of Thinkpads, I prefer a patch with a smaller
impact like yours.
Takashi
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] ALSA: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out
2015-06-24 13:23 ` Takashi Iwai
@ 2015-06-25 7:00 ` Takashi Iwai
0 siblings, 0 replies; 9+ messages in thread
From: Takashi Iwai @ 2015-06-25 7:00 UTC (permalink / raw)
To: David Henningsson; +Cc: alsa-devel, stable
At Wed, 24 Jun 2015 15:23:24 +0200,
Takashi Iwai wrote:
>
> At Wed, 24 Jun 2015 14:33:52 +0200,
> David Henningsson wrote:
> >
> >
> >
> > On 2015-06-24 14:10, Takashi Iwai wrote:
> > > At Wed, 24 Jun 2015 13:06:05 +0200,
> > > David Henningsson wrote:
> > >>
> > >>
> > >>
> > >> On 2015-06-24 11:00, Takashi Iwai wrote:
> > >>> At Wed, 24 Jun 2015 10:46:33 +0200,
> > >>> David Henningsson wrote:
> > >>>>
> > >>>> Thinkpad X250, when attached to a dock, has two headphone outs but
> > >>>> no line out. Make sure we don't try to turn this into one headphone
> > >>>> and one line out (since that disables the headphone amp on the dock).
> > >>>>
> > >>>> Alsa-info at http://www.alsa-project.org/db/?f=36f8764e1d782397928feec715d0ef90dfddd4c1
> > >>>>
> > >>>> Cc: stable@vger.kernel.org
> > >>>> Signed-off-by: David Henningsson <david.henningsson@canonical.com>
> > >>>
> > >>> This is one of fixes I had in mind (and asked for testing in bugzilla
> > >>> kernel.org report).
> > >>
> > >> Sorry, I'm missing context. What report?
> > >>
> > >>> One drawback by this is that the auto-mute
> > >>> *between* the headphones won't work like before. If one has expected
> > >>> it, then this can be seen as a regression.
> > >>
> > >> Fair enough, we can drop stable from the patch since this could be seen
> > >> as behavioural change rather than bug fix.
> > >>
> > >>> Another fix was to change this as a proper line-out. This will keep
> > >>> the current auto-mute behavior.
> > >>>
> > >>> OTOH, dealing both jacks equally is also not bad, per se.
> > >>
> > >> The tricky thing about routing is that everyone wants it different, so
> > >> pleasing everyone seems to be an impossible equation :-/
> > >>
> > >> I would choose the default behaviour (headphone or line out) based on
> > >> the icon on the jack. I should double-check that with someone who has
> > >> the hardware. And then, if someone wants another behaviour then
> > >> hdajackretask can be used. Or we can add a jack mode kcontrol for that
> > >> jack, if you prefer, although I'd have to check how PulseAudio handles
> > >> that (not that well, is my gut feeling).
> > >
> > > I have no preference in this regard. My only slight concern was the
> > > behavior change by this patch. It has both sides, one can see as an
> > > improvement while another as a regression.
> > >
> > > Currently I'm inclined to take this patch as is, since this would make
> > > things working in a little obstacle. Once when we get a real
> > > regression report due to the lack of exclusive mute control, we may
> > > provide another model option as a compromise.
> > >
> > > But, I'm open about this, really. So, if anyone has a good argument,
> > > let me know.
> >
> > Anyhow, it looks like the current behaviour is not good, because we have
> > a "Dock Headphone Jack" on the same node as "Dock Line Out Playback
> > Switch". This makes me wonder if the HP -> LO fixup should be removed
> > altogether. Are there any machines these days that needs this fixup? In
> > case there were just a few of them in the past, maybe they should have
> > pin fixups instead?
>
> Yes, this is one good step forward. We should check through hda-emu.
>
> Though, for the problem of Thinkpads, I prefer a patch with a smaller
> impact like yours.
FYI, I applied the patch now. Let's continue working on top of it.
thanks,
Takashi
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2015-06-25 7:00 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-24 8:46 [PATCH] ALSA: hda - Fix Dock Headphone on Thinkpad X250 seen as a Line Out David Henningsson
2015-06-24 9:00 ` Takashi Iwai
2015-06-24 11:06 ` David Henningsson
2015-06-24 11:23 ` Raymond Yau
2015-06-24 11:40 ` [alsa-devel] " David Henningsson
2015-06-24 12:10 ` Takashi Iwai
2015-06-24 12:33 ` David Henningsson
2015-06-24 13:23 ` Takashi Iwai
2015-06-25 7:00 ` Takashi Iwai
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.