* [PATCH] ALSA: hda/realtek: Add CLSA0101 to serial-multi-instantiate.
@ 2022-08-16 19:46 Cameron Berkenpas
2022-08-17 1:00 ` Cameron Berkenpas
0 siblings, 1 reply; 4+ messages in thread
From: Cameron Berkenpas @ 2022-08-16 19:46 UTC (permalink / raw)
To: alsa-devel; +Cc: tiwai, Cameron Berkenpas, tanureal
Added CLSA0101 to serial-multi-instantiate.c.
Signed-off-by: Cameron Berkenpas <cam@neo-zeon.de>
---
drivers/platform/x86/serial-multi-instantiate.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/platform/x86/serial-multi-instantiate.c b/drivers/platform/x86/serial-multi-instantiate.c
index 1e8063b7c169..bc9bf591dd10 100644
--- a/drivers/platform/x86/serial-multi-instantiate.c
+++ b/drivers/platform/x86/serial-multi-instantiate.c
@@ -327,8 +327,9 @@ static const struct acpi_device_id smi_acpi_ids[] = {
{ "BSG2150", (unsigned long)&bsg2150_data },
{ "INT3515", (unsigned long)&int3515_data },
{ "CSC3551", (unsigned long)&cs35l41_hda },
- /* Non-conforming _HID for Cirrus Logic already released */
+ /* Non-conforming _HIDs for Cirrus Logic already released */
{ "CLSA0100", (unsigned long)&cs35l41_hda },
+ { "CLSA0101", (unsigned long)&cs35l41_hda },
{ }
};
MODULE_DEVICE_TABLE(acpi, smi_acpi_ids);
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: Add CLSA0101 to serial-multi-instantiate.
2022-08-16 19:46 [PATCH] ALSA: hda/realtek: Add CLSA0101 to serial-multi-instantiate Cameron Berkenpas
@ 2022-08-17 1:00 ` Cameron Berkenpas
2022-08-17 6:59 ` Takashi Iwai
0 siblings, 1 reply; 4+ messages in thread
From: Cameron Berkenpas @ 2022-08-17 1:00 UTC (permalink / raw)
To: alsa-devel
To add to this, it seems this patch was originally included but was
somehow lost at some point:
https://www.spinics.net/lists/alsa-devel/msg145711.html
It seems the rest of the patch series made it in intact.
On 8/16/22 12:46, Cameron Berkenpas wrote:
> Added CLSA0101 to serial-multi-instantiate.c.
>
> Signed-off-by: Cameron Berkenpas <cam@neo-zeon.de>
> ---
> drivers/platform/x86/serial-multi-instantiate.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/platform/x86/serial-multi-instantiate.c b/drivers/platform/x86/serial-multi-instantiate.c
> index 1e8063b7c169..bc9bf591dd10 100644
> --- a/drivers/platform/x86/serial-multi-instantiate.c
> +++ b/drivers/platform/x86/serial-multi-instantiate.c
> @@ -327,8 +327,9 @@ static const struct acpi_device_id smi_acpi_ids[] = {
> { "BSG2150", (unsigned long)&bsg2150_data },
> { "INT3515", (unsigned long)&int3515_data },
> { "CSC3551", (unsigned long)&cs35l41_hda },
> - /* Non-conforming _HID for Cirrus Logic already released */
> + /* Non-conforming _HIDs for Cirrus Logic already released */
> { "CLSA0100", (unsigned long)&cs35l41_hda },
> + { "CLSA0101", (unsigned long)&cs35l41_hda },
> { }
> };
> MODULE_DEVICE_TABLE(acpi, smi_acpi_ids);
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: Add CLSA0101 to serial-multi-instantiate.
2022-08-17 1:00 ` Cameron Berkenpas
@ 2022-08-17 6:59 ` Takashi Iwai
2022-08-17 7:55 ` Takashi Iwai
0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2022-08-17 6:59 UTC (permalink / raw)
To: Cameron Berkenpas; +Cc: alsa-devel, Lucas Tanure
On Wed, 17 Aug 2022 03:00:43 +0200,
Cameron Berkenpas wrote:
>
> To add to this, it seems this patch was originally included but was
> somehow lost at some point:
> https://www.spinics.net/lists/alsa-devel/msg145711.html
>
> It seems the rest of the patch series made it in intact.
OK, this looks like some oversight.
Lucas, please check it and give ack if that's OK to merge (I suppose
so).
thanks,
Takashi
>
> On 8/16/22 12:46, Cameron Berkenpas wrote:
> > Added CLSA0101 to serial-multi-instantiate.c.
> >
> > Signed-off-by: Cameron Berkenpas <cam@neo-zeon.de>
> > ---
> > drivers/platform/x86/serial-multi-instantiate.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/platform/x86/serial-multi-instantiate.c b/drivers/platform/x86/serial-multi-instantiate.c
> > index 1e8063b7c169..bc9bf591dd10 100644
> > --- a/drivers/platform/x86/serial-multi-instantiate.c
> > +++ b/drivers/platform/x86/serial-multi-instantiate.c
> > @@ -327,8 +327,9 @@ static const struct acpi_device_id smi_acpi_ids[] = {
> > { "BSG2150", (unsigned long)&bsg2150_data },
> > { "INT3515", (unsigned long)&int3515_data },
> > { "CSC3551", (unsigned long)&cs35l41_hda },
> > - /* Non-conforming _HID for Cirrus Logic already released */
> > + /* Non-conforming _HIDs for Cirrus Logic already released */
> > { "CLSA0100", (unsigned long)&cs35l41_hda },
> > + { "CLSA0101", (unsigned long)&cs35l41_hda },
> > { }
> > };
> > MODULE_DEVICE_TABLE(acpi, smi_acpi_ids);
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: Add CLSA0101 to serial-multi-instantiate.
2022-08-17 6:59 ` Takashi Iwai
@ 2022-08-17 7:55 ` Takashi Iwai
0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2022-08-17 7:55 UTC (permalink / raw)
To: Cameron Berkenpas; +Cc: alsa-devel, Lucas Tanure
On Wed, 17 Aug 2022 08:59:32 +0200,
Takashi Iwai wrote:
>
> On Wed, 17 Aug 2022 03:00:43 +0200,
> Cameron Berkenpas wrote:
> >
> > To add to this, it seems this patch was originally included but was
> > somehow lost at some point:
> > https://www.spinics.net/lists/alsa-devel/msg145711.html
> >
> > It seems the rest of the patch series made it in intact.
>
> OK, this looks like some oversight.
>
> Lucas, please check it and give ack if that's OK to merge (I suppose
> so).
Actually that was my failure; I overlooked the original patch likely
because the subject prefix was not ALSA or it couldn't be applied as
is or so...
Now I took Lucas' original patch
https://lore.kernel.org/r/20220727095924.80884-5-tanureal@opensource.cirrus.com
thanks,
Takashi
>
>
> thanks,
>
> Takashi
>
> >
> > On 8/16/22 12:46, Cameron Berkenpas wrote:
> > > Added CLSA0101 to serial-multi-instantiate.c.
> > >
> > > Signed-off-by: Cameron Berkenpas <cam@neo-zeon.de>
> > > ---
> > > drivers/platform/x86/serial-multi-instantiate.c | 3 ++-
> > > 1 file changed, 2 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/platform/x86/serial-multi-instantiate.c b/drivers/platform/x86/serial-multi-instantiate.c
> > > index 1e8063b7c169..bc9bf591dd10 100644
> > > --- a/drivers/platform/x86/serial-multi-instantiate.c
> > > +++ b/drivers/platform/x86/serial-multi-instantiate.c
> > > @@ -327,8 +327,9 @@ static const struct acpi_device_id smi_acpi_ids[] = {
> > > { "BSG2150", (unsigned long)&bsg2150_data },
> > > { "INT3515", (unsigned long)&int3515_data },
> > > { "CSC3551", (unsigned long)&cs35l41_hda },
> > > - /* Non-conforming _HID for Cirrus Logic already released */
> > > + /* Non-conforming _HIDs for Cirrus Logic already released */
> > > { "CLSA0100", (unsigned long)&cs35l41_hda },
> > > + { "CLSA0101", (unsigned long)&cs35l41_hda },
> > > { }
> > > };
> > > MODULE_DEVICE_TABLE(acpi, smi_acpi_ids);
> >
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-08-17 7:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-16 19:46 [PATCH] ALSA: hda/realtek: Add CLSA0101 to serial-multi-instantiate Cameron Berkenpas
2022-08-17 1:00 ` Cameron Berkenpas
2022-08-17 6:59 ` Takashi Iwai
2022-08-17 7:55 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox