* [PATCH] Add Lenovo Legion 7i gen7 sound quirk @ 2024-02-12 19:33 T. Kudela 2024-02-13 7:12 ` Takashi Iwai 2024-02-13 8:21 ` [PATCH v2] " Tomasz Kudela 0 siblings, 2 replies; 7+ messages in thread From: T. Kudela @ 2024-02-12 19:33 UTC (permalink / raw) To: james.schulman, david.rhodes, rf, perex, tiwai, sbinding, kailang, luke, andy.chi, shenghao-ding, ruinairas1992, vitalyr, alsa-devel, patches, linux-sound, linux-kernel Cc: T. Kudela Add sound support for the Legion 7i gen7 laptop (16IAX7). Signed-off-by: T. Kudela <ramzes005@gmail.com> --- sound/pci/hda/cs35l41_hda_property.c | 2 ++ sound/pci/hda/patch_realtek.c | 1 + 2 files changed, 3 insertions(+) diff --git a/sound/pci/hda/cs35l41_hda_property.c b/sound/pci/hda/cs35l41_hda_property.c index d74cf11eef1e..8a6b484b2184 100644 --- a/sound/pci/hda/cs35l41_hda_property.c +++ b/sound/pci/hda/cs35l41_hda_property.c @@ -95,6 +95,7 @@ static const struct cs35l41_config cs35l41_config_table[] = { { "10431F12", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4500, 24 }, { "10431F1F", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, -1, 0, 0, 0, 0 }, { "10431F62", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 0, 0, 0 }, + { "17AA386F", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, { "17AA38B4", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, { "17AA38B5", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, { "17AA38B6", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, @@ -431,6 +432,7 @@ static const struct cs35l41_prop_model cs35l41_prop_model_table[] = { { "CSC3551", "10431F12", generic_dsd_config }, { "CSC3551", "10431F1F", generic_dsd_config }, { "CSC3551", "10431F62", generic_dsd_config }, + { "CSC3551", "17AA386F", generic_dsd_config }, { "CSC3551", "17AA38B4", generic_dsd_config }, { "CSC3551", "17AA38B5", generic_dsd_config }, { "CSC3551", "17AA38B6", generic_dsd_config }, diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 6994c4c5073c..0029f61d4693 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -10260,6 +10260,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = { SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), SND_PCI_QUIRK(0x17aa, 0x3855, "Legion 7 16ITHG6", ALC287_FIXUP_LEGION_16ITHG6), SND_PCI_QUIRK(0x17aa, 0x3869, "Lenovo Yoga7 14IAL7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN), + SND_PCI_QUIRK(0x17aa, 0x386f, "Legion 7i 16IAX7", ALC287_FIXUP_CS35L41_I2C_2), SND_PCI_QUIRK(0x17aa, 0x3870, "Lenovo Yoga 7 14ARB7", ALC287_FIXUP_YOGA7_14ARB7_I2C), SND_PCI_QUIRK(0x17aa, 0x387d, "Yoga S780-16 pro Quad AAC", ALC287_FIXUP_TAS2781_I2C), SND_PCI_QUIRK(0x17aa, 0x387e, "Yoga S780-16 pro Quad YC", ALC287_FIXUP_TAS2781_I2C), -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] Add Lenovo Legion 7i gen7 sound quirk 2024-02-12 19:33 [PATCH] Add Lenovo Legion 7i gen7 sound quirk T. Kudela @ 2024-02-13 7:12 ` Takashi Iwai 2024-02-13 8:21 ` [PATCH v2] " Tomasz Kudela 1 sibling, 0 replies; 7+ messages in thread From: Takashi Iwai @ 2024-02-13 7:12 UTC (permalink / raw) To: T. Kudela Cc: james.schulman, david.rhodes, rf, perex, tiwai, sbinding, kailang, luke, andy.chi, shenghao-ding, ruinairas1992, vitalyr, alsa-devel, patches, linux-sound, linux-kernel On Mon, 12 Feb 2024 20:33:27 +0100, T. Kudela wrote: > > Add sound support for the Legion 7i gen7 laptop (16IAX7). > > Signed-off-by: T. Kudela <ramzes005@gmail.com> Use a full real name for your sign-off, as it's a legal requirement. thanks, Takashi ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v2] Add Lenovo Legion 7i gen7 sound quirk 2024-02-12 19:33 [PATCH] Add Lenovo Legion 7i gen7 sound quirk T. Kudela 2024-02-13 7:12 ` Takashi Iwai @ 2024-02-13 8:21 ` Tomasz Kudela 2024-02-13 10:00 ` Stefan Binding 1 sibling, 1 reply; 7+ messages in thread From: Tomasz Kudela @ 2024-02-13 8:21 UTC (permalink / raw) To: ramzes005 Cc: alsa-devel, andy.chi, david.rhodes, james.schulman, kailang, linux-kernel, linux-sound, luke, patches, perex, rf, ruinairas1992, sbinding, shenghao-ding, tiwai, vitalyr From: "T. Kudela" <ramzes005@gmail.com> Add sound support for the Legion 7i gen7 laptop (16IAX7). Signed-off-by: Tomasz Kudela <ramzes005@gmail.com> --- sound/pci/hda/cs35l41_hda_property.c | 2 ++ sound/pci/hda/patch_realtek.c | 1 + 2 files changed, 3 insertions(+) diff --git a/sound/pci/hda/cs35l41_hda_property.c b/sound/pci/hda/cs35l41_hda_property.c index d74cf11eef1e..8a6b484b2184 100644 --- a/sound/pci/hda/cs35l41_hda_property.c +++ b/sound/pci/hda/cs35l41_hda_property.c @@ -95,6 +95,7 @@ static const struct cs35l41_config cs35l41_config_table[] = { { "10431F12", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4500, 24 }, { "10431F1F", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, -1, 0, 0, 0, 0 }, { "10431F62", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 0, 0, 0 }, + { "17AA386F", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, { "17AA38B4", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, { "17AA38B5", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, { "17AA38B6", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, @@ -431,6 +432,7 @@ static const struct cs35l41_prop_model cs35l41_prop_model_table[] = { { "CSC3551", "10431F12", generic_dsd_config }, { "CSC3551", "10431F1F", generic_dsd_config }, { "CSC3551", "10431F62", generic_dsd_config }, + { "CSC3551", "17AA386F", generic_dsd_config }, { "CSC3551", "17AA38B4", generic_dsd_config }, { "CSC3551", "17AA38B5", generic_dsd_config }, { "CSC3551", "17AA38B6", generic_dsd_config }, diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 6994c4c5073c..0029f61d4693 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -10260,6 +10260,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = { SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), SND_PCI_QUIRK(0x17aa, 0x3855, "Legion 7 16ITHG6", ALC287_FIXUP_LEGION_16ITHG6), SND_PCI_QUIRK(0x17aa, 0x3869, "Lenovo Yoga7 14IAL7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN), + SND_PCI_QUIRK(0x17aa, 0x386f, "Legion 7i 16IAX7", ALC287_FIXUP_CS35L41_I2C_2), SND_PCI_QUIRK(0x17aa, 0x3870, "Lenovo Yoga 7 14ARB7", ALC287_FIXUP_YOGA7_14ARB7_I2C), SND_PCI_QUIRK(0x17aa, 0x387d, "Yoga S780-16 pro Quad AAC", ALC287_FIXUP_TAS2781_I2C), SND_PCI_QUIRK(0x17aa, 0x387e, "Yoga S780-16 pro Quad YC", ALC287_FIXUP_TAS2781_I2C), -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* RE: [PATCH v2] Add Lenovo Legion 7i gen7 sound quirk 2024-02-13 8:21 ` [PATCH v2] " Tomasz Kudela @ 2024-02-13 10:00 ` Stefan Binding 2024-02-13 11:56 ` [PATCH v3] " Tomasz Kudela 0 siblings, 1 reply; 7+ messages in thread From: Stefan Binding @ 2024-02-13 10:00 UTC (permalink / raw) To: 'Tomasz Kudela' Cc: alsa-devel, andy.chi, david.rhodes, james.schulman, kailang, linux-kernel, linux-sound, luke, patches, perex, rf, ruinairas1992, shenghao-ding, tiwai, vitalyr Hi, > -----Original Message----- > From: Tomasz Kudela <ramzes005@gmail.com> > Sent: Tuesday, February 13, 2024 8:21 AM > To: ramzes005@gmail.com > Cc: alsa-devel@alsa-project.org; andy.chi@canonical.com; > david.rhodes@cirrus.com; james.schulman@cirrus.com; > kailang@realtek.com; linux-kernel@vger.kernel.org; linux- > sound@vger.kernel.org; luke@ljones.dev; > patches@opensource.cirrus.com; perex@perex.cz; > rf@opensource.cirrus.com; ruinairas1992@gmail.com; > sbinding@opensource.cirrus.com; shenghao-ding@ti.com; > tiwai@suse.com; vitalyr@opensource.cirrus.com > Subject: [PATCH v2] Add Lenovo Legion 7i gen7 sound quirk > > From: "T. Kudela" <ramzes005@gmail.com> > > Add sound support for the Legion 7i gen7 laptop (16IAX7). > > Signed-off-by: Tomasz Kudela <ramzes005@gmail.com> > --- > sound/pci/hda/cs35l41_hda_property.c | 2 ++ > sound/pci/hda/patch_realtek.c | 1 + > 2 files changed, 3 insertions(+) > > diff --git a/sound/pci/hda/cs35l41_hda_property.c > b/sound/pci/hda/cs35l41_hda_property.c > index d74cf11eef1e..8a6b484b2184 100644 > --- a/sound/pci/hda/cs35l41_hda_property.c > +++ b/sound/pci/hda/cs35l41_hda_property.c > @@ -95,6 +95,7 @@ static const struct cs35l41_config > cs35l41_config_table[] = { > { "10431F12", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 > }, 0, 1, -1, 1000, 4500, 24 }, > { "10431F1F", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 > }, 1, -1, 0, 0, 0, 0 }, > { "10431F62", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 > }, 1, 2, 0, 0, 0, 0 }, > + { "17AA386F", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 > }, 0, 1, -1, 0, 0, 0 }, I don't believe this laptop has a Speaker ID, so this configuration should be: { "17AA386F", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, -1, -1, 0, 0, 0 }, Thanks, Stefan > { "17AA38B4", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 > }, 0, 1, -1, 0, 0, 0 }, > { "17AA38B5", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 > }, 0, 1, -1, 0, 0, 0 }, > { "17AA38B6", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 > }, 0, 1, -1, 0, 0, 0 }, > @@ -431,6 +432,7 @@ static const struct cs35l41_prop_model > cs35l41_prop_model_table[] = { > { "CSC3551", "10431F12", generic_dsd_config }, > { "CSC3551", "10431F1F", generic_dsd_config }, > { "CSC3551", "10431F62", generic_dsd_config }, > + { "CSC3551", "17AA386F", generic_dsd_config }, > { "CSC3551", "17AA38B4", generic_dsd_config }, > { "CSC3551", "17AA38B5", generic_dsd_config }, > { "CSC3551", "17AA38B6", generic_dsd_config }, > diff --git a/sound/pci/hda/patch_realtek.c > b/sound/pci/hda/patch_realtek.c > index 6994c4c5073c..0029f61d4693 100644 > --- a/sound/pci/hda/patch_realtek.c > +++ b/sound/pci/hda/patch_realtek.c > @@ -10260,6 +10260,7 @@ static const struct snd_pci_quirk > alc269_fixup_tbl[] = { > SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", > ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), > SND_PCI_QUIRK(0x17aa, 0x3855, "Legion 7 16ITHG6", > ALC287_FIXUP_LEGION_16ITHG6), > SND_PCI_QUIRK(0x17aa, 0x3869, "Lenovo Yoga7 14IAL7", > ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN), > + SND_PCI_QUIRK(0x17aa, 0x386f, "Legion 7i 16IAX7", > ALC287_FIXUP_CS35L41_I2C_2), > SND_PCI_QUIRK(0x17aa, 0x3870, "Lenovo Yoga 7 14ARB7", > ALC287_FIXUP_YOGA7_14ARB7_I2C), > SND_PCI_QUIRK(0x17aa, 0x387d, "Yoga S780-16 pro Quad AAC", > ALC287_FIXUP_TAS2781_I2C), > SND_PCI_QUIRK(0x17aa, 0x387e, "Yoga S780-16 pro Quad YC", > ALC287_FIXUP_TAS2781_I2C), > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v3] Add Lenovo Legion 7i gen7 sound quirk 2024-02-13 10:00 ` Stefan Binding @ 2024-02-13 11:56 ` Tomasz Kudela 2024-02-13 12:40 ` Takashi Iwai 0 siblings, 1 reply; 7+ messages in thread From: Tomasz Kudela @ 2024-02-13 11:56 UTC (permalink / raw) To: sbinding Cc: alsa-devel, andy.chi, david.rhodes, james.schulman, kailang, linux-kernel, linux-sound, luke, patches, perex, ramzes005, rf, ruinairas1992, shenghao-ding, tiwai, vitalyr From: "Tomasz Kudela" <ramzes005@gmail.com> Add sound support for the Legion 7i gen7 laptop (16IAX7). Signed-off-by: Tomasz Kudela <ramzes005@gmail.com> --- sound/pci/hda/cs35l41_hda_property.c | 2 ++ sound/pci/hda/patch_realtek.c | 1 + 2 files changed, 3 insertions(+) diff --git a/sound/pci/hda/cs35l41_hda_property.c b/sound/pci/hda/cs35l41_hda_property.c index d74cf11eef1e..57b21285ab6a 100644 --- a/sound/pci/hda/cs35l41_hda_property.c +++ b/sound/pci/hda/cs35l41_hda_property.c @@ -95,6 +95,7 @@ static const struct cs35l41_config cs35l41_config_table[] = { { "10431F12", 2, INTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 1000, 4500, 24 }, { "10431F1F", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, -1, 0, 0, 0, 0 }, { "10431F62", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 1, 2, 0, 0, 0, 0 }, + { "17AA386F", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, -1, -1, 0, 0, 0 }, { "17AA38B4", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, { "17AA38B5", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, { "17AA38B6", 2, EXTERNAL, { CS35L41_LEFT, CS35L41_RIGHT, 0, 0 }, 0, 1, -1, 0, 0, 0 }, @@ -431,6 +432,7 @@ static const struct cs35l41_prop_model cs35l41_prop_model_table[] = { { "CSC3551", "10431F12", generic_dsd_config }, { "CSC3551", "10431F1F", generic_dsd_config }, { "CSC3551", "10431F62", generic_dsd_config }, + { "CSC3551", "17AA386F", generic_dsd_config }, { "CSC3551", "17AA38B4", generic_dsd_config }, { "CSC3551", "17AA38B5", generic_dsd_config }, { "CSC3551", "17AA38B6", generic_dsd_config }, diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 6994c4c5073c..0029f61d4693 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -10260,6 +10260,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = { SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS), SND_PCI_QUIRK(0x17aa, 0x3855, "Legion 7 16ITHG6", ALC287_FIXUP_LEGION_16ITHG6), SND_PCI_QUIRK(0x17aa, 0x3869, "Lenovo Yoga7 14IAL7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN), + SND_PCI_QUIRK(0x17aa, 0x386f, "Legion 7i 16IAX7", ALC287_FIXUP_CS35L41_I2C_2), SND_PCI_QUIRK(0x17aa, 0x3870, "Lenovo Yoga 7 14ARB7", ALC287_FIXUP_YOGA7_14ARB7_I2C), SND_PCI_QUIRK(0x17aa, 0x387d, "Yoga S780-16 pro Quad AAC", ALC287_FIXUP_TAS2781_I2C), SND_PCI_QUIRK(0x17aa, 0x387e, "Yoga S780-16 pro Quad YC", ALC287_FIXUP_TAS2781_I2C), -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v3] Add Lenovo Legion 7i gen7 sound quirk 2024-02-13 11:56 ` [PATCH v3] " Tomasz Kudela @ 2024-02-13 12:40 ` Takashi Iwai [not found] ` <CAPtLpdGH6aptJq_Co5=1NL+Sb55vtax8KrUbyMQj2ThvS2YtHg@mail.gmail.com> 0 siblings, 1 reply; 7+ messages in thread From: Takashi Iwai @ 2024-02-13 12:40 UTC (permalink / raw) To: Tomasz Kudela Cc: sbinding, alsa-devel, andy.chi, david.rhodes, james.schulman, kailang, linux-kernel, linux-sound, luke, patches, perex, rf, ruinairas1992, shenghao-ding, tiwai, vitalyr On Tue, 13 Feb 2024 12:56:14 +0100, Tomasz Kudela wrote: > > From: "Tomasz Kudela" <ramzes005@gmail.com> > > Add sound support for the Legion 7i gen7 laptop (16IAX7). > > Signed-off-by: Tomasz Kudela <ramzes005@gmail.com> You tested with this new patch and confirmed it's still working, right? Just to be sure. Takashi ^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <CAPtLpdGH6aptJq_Co5=1NL+Sb55vtax8KrUbyMQj2ThvS2YtHg@mail.gmail.com>]
* Re: [PATCH v3] Add Lenovo Legion 7i gen7 sound quirk [not found] ` <CAPtLpdGH6aptJq_Co5=1NL+Sb55vtax8KrUbyMQj2ThvS2YtHg@mail.gmail.com> @ 2024-02-13 14:36 ` Takashi Iwai 0 siblings, 0 replies; 7+ messages in thread From: Takashi Iwai @ 2024-02-13 14:36 UTC (permalink / raw) To: ramzes Cc: sbinding, alsa-devel, andy.chi, david.rhodes, james.schulman, kailang, linux-kernel, linux-sound, luke, patches, perex, rf, ruinairas1992, shenghao-ding, tiwai, vitalyr On Tue, 13 Feb 2024 14:16:43 +0100, ramzes wrote: > > > Yes, I've compiled kernel with latest patch version, > with Stephan's configuration, and sound works well on my laptop. OK, now I applied the patch. Thanks. Takashi > > Tomasz > > wt., 13 lut 2024 o 13:40 Takashi Iwai <tiwai@suse.de> napisał(a): > > On Tue, 13 Feb 2024 12:56:14 +0100, > Tomasz Kudela wrote: > > > > From: "Tomasz Kudela" <ramzes005@gmail.com> > > > > Add sound support for the Legion 7i gen7 laptop (16IAX7). > > > > Signed-off-by: Tomasz Kudela <ramzes005@gmail.com> > > You tested with this new patch and confirmed it's still working, > right? Just to be sure. > > Takashi > ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-02-13 14:36 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-12 19:33 [PATCH] Add Lenovo Legion 7i gen7 sound quirk T. Kudela
2024-02-13 7:12 ` Takashi Iwai
2024-02-13 8:21 ` [PATCH v2] " Tomasz Kudela
2024-02-13 10:00 ` Stefan Binding
2024-02-13 11:56 ` [PATCH v3] " Tomasz Kudela
2024-02-13 12:40 ` Takashi Iwai
[not found] ` <CAPtLpdGH6aptJq_Co5=1NL+Sb55vtax8KrUbyMQj2ThvS2YtHg@mail.gmail.com>
2024-02-13 14:36 ` Takashi Iwai
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox