* [PATCH] ASoC: amd: yc: Add a quirk for MSI Bravo 17 (D7VEK)
@ 2024-08-29 13:03 Markuss Broks
2024-08-29 13:49 ` Greg KH
2024-08-29 14:56 ` Mark Brown
0 siblings, 2 replies; 5+ messages in thread
From: Markuss Broks @ 2024-08-29 13:03 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-sound, markuss.broks, stable
MSI Bravo 17 (D7VEK), like other laptops from the family,
has broken ACPI tables and needs a quirk for internal mic
to work.
Signed-off-by: Markuss Broks <markuss.broks@gmail.com>
---
sound/soc/amd/yc/acp6x-mach.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c
index 0523c16305db..843abc378b28 100644
--- a/sound/soc/amd/yc/acp6x-mach.c
+++ b/sound/soc/amd/yc/acp6x-mach.c
@@ -353,6 +353,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = {
DMI_MATCH(DMI_PRODUCT_NAME, "Bravo 15 C7VF"),
}
},
+ {
+ .driver_data = &acp6x_card,
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "Micro-Star International Co., Ltd."),
+ DMI_MATCH(DMI_PRODUCT_NAME, "Bravo 17 D7VEK"),
+ }
+ },
{
.driver_data = &acp6x_card,
.matches = {
--
2.46.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] ASoC: amd: yc: Add a quirk for MSI Bravo 17 (D7VEK)
2024-08-29 13:03 [PATCH] ASoC: amd: yc: Add a quirk for MSI Bravo 17 (D7VEK) Markuss Broks
@ 2024-08-29 13:49 ` Greg KH
2024-08-29 14:36 ` Markuss Broks
2024-08-29 14:56 ` Mark Brown
1 sibling, 1 reply; 5+ messages in thread
From: Greg KH @ 2024-08-29 13:49 UTC (permalink / raw)
To: Markuss Broks; +Cc: Mark Brown, linux-sound, stable
On Thu, Aug 29, 2024 at 04:03:05PM +0300, Markuss Broks wrote:
> MSI Bravo 17 (D7VEK), like other laptops from the family,
> has broken ACPI tables and needs a quirk for internal mic
> to work.
>
> Signed-off-by: Markuss Broks <markuss.broks@gmail.com>
> ---
> sound/soc/amd/yc/acp6x-mach.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c
> index 0523c16305db..843abc378b28 100644
> --- a/sound/soc/amd/yc/acp6x-mach.c
> +++ b/sound/soc/amd/yc/acp6x-mach.c
> @@ -353,6 +353,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = {
> DMI_MATCH(DMI_PRODUCT_NAME, "Bravo 15 C7VF"),
> }
> },
> + {
> + .driver_data = &acp6x_card,
> + .matches = {
> + DMI_MATCH(DMI_BOARD_VENDOR, "Micro-Star International Co., Ltd."),
> + DMI_MATCH(DMI_PRODUCT_NAME, "Bravo 17 D7VEK"),
> + }
> + },
> {
> .driver_data = &acp6x_card,
> .matches = {
> --
> 2.46.0
>
>
<formletter>
This is not the correct way to submit patches for inclusion in the
stable kernel tree. Please read:
https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
for how to do this properly.
</formletter>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ASoC: amd: yc: Add a quirk for MSI Bravo 17 (D7VEK)
2024-08-29 13:49 ` Greg KH
@ 2024-08-29 14:36 ` Markuss Broks
2024-08-29 14:40 ` Mark Brown
0 siblings, 1 reply; 5+ messages in thread
From: Markuss Broks @ 2024-08-29 14:36 UTC (permalink / raw)
To: Greg KH; +Cc: Mark Brown, linux-sound, stable
Hi,
Sorry, misread it, so I need to include it in the mail body? Do I resend
this patch with that change?
On 8/29/24 4:49 PM, Greg KH wrote:
> On Thu, Aug 29, 2024 at 04:03:05PM +0300, Markuss Broks wrote:
>> MSI Bravo 17 (D7VEK), like other laptops from the family,
>> has broken ACPI tables and needs a quirk for internal mic
>> to work.
>>
>> Signed-off-by: Markuss Broks <markuss.broks@gmail.com>
>> ---
>> sound/soc/amd/yc/acp6x-mach.c | 7 +++++++
>> 1 file changed, 7 insertions(+)
>>
>> diff --git a/sound/soc/amd/yc/acp6x-mach.c b/sound/soc/amd/yc/acp6x-mach.c
>> index 0523c16305db..843abc378b28 100644
>> --- a/sound/soc/amd/yc/acp6x-mach.c
>> +++ b/sound/soc/amd/yc/acp6x-mach.c
>> @@ -353,6 +353,13 @@ static const struct dmi_system_id yc_acp_quirk_table[] = {
>> DMI_MATCH(DMI_PRODUCT_NAME, "Bravo 15 C7VF"),
>> }
>> },
>> + {
>> + .driver_data = &acp6x_card,
>> + .matches = {
>> + DMI_MATCH(DMI_BOARD_VENDOR, "Micro-Star International Co., Ltd."),
>> + DMI_MATCH(DMI_PRODUCT_NAME, "Bravo 17 D7VEK"),
>> + }
>> + },
>> {
>> .driver_data = &acp6x_card,
>> .matches = {
>> --
>> 2.46.0
>>
>>
> <formletter>
>
> This is not the correct way to submit patches for inclusion in the
> stable kernel tree. Please read:
> https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
> for how to do this properly.
>
> </formletter>
- Markuss
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ASoC: amd: yc: Add a quirk for MSI Bravo 17 (D7VEK)
2024-08-29 14:36 ` Markuss Broks
@ 2024-08-29 14:40 ` Mark Brown
0 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2024-08-29 14:40 UTC (permalink / raw)
To: Markuss Broks; +Cc: Greg KH, linux-sound, stable
[-- Attachment #1: Type: text/plain, Size: 416 bytes --]
On Thu, Aug 29, 2024 at 05:36:06PM +0300, Markuss Broks wrote:
> Sorry, misread it, so I need to include it in the mail body? Do I resend
> this patch with that change?
No.
Please don't top post, reply in line with needed context. This allows
readers to readily follow the flow of conversation and understand what
you are talking about and also helps ensure that everything in the
discussion is being addressed.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ASoC: amd: yc: Add a quirk for MSI Bravo 17 (D7VEK)
2024-08-29 13:03 [PATCH] ASoC: amd: yc: Add a quirk for MSI Bravo 17 (D7VEK) Markuss Broks
2024-08-29 13:49 ` Greg KH
@ 2024-08-29 14:56 ` Mark Brown
1 sibling, 0 replies; 5+ messages in thread
From: Mark Brown @ 2024-08-29 14:56 UTC (permalink / raw)
To: Markuss Broks; +Cc: linux-sound, stable
On Thu, 29 Aug 2024 16:03:05 +0300, Markuss Broks wrote:
> MSI Bravo 17 (D7VEK), like other laptops from the family,
> has broken ACPI tables and needs a quirk for internal mic
> to work.
>
>
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
Thanks!
[1/1] ASoC: amd: yc: Add a quirk for MSI Bravo 17 (D7VEK)
commit: 283844c35529300c8e10f7a263e35e3c5d3580ac
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-08-29 14:56 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-29 13:03 [PATCH] ASoC: amd: yc: Add a quirk for MSI Bravo 17 (D7VEK) Markuss Broks
2024-08-29 13:49 ` Greg KH
2024-08-29 14:36 ` Markuss Broks
2024-08-29 14:40 ` Mark Brown
2024-08-29 14:56 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox