-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DMI remap for rebranded Intel NUC M15 (LAPRC710) laptops #4744
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -236,6 +236,17 @@ static const struct dmi_system_id sof_sdw_quirk_table[] = { | |
SOF_SDW_PCH_DMIC | | ||
RT711_JD2_100K), | ||
}, | ||
{ | ||
/* NUC15 LAPRC710 skews */ | ||
.callback = sof_sdw_quirk_cb, | ||
.matches = { | ||
DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"), | ||
DMI_MATCH(DMI_BOARD_NAME, "LAPRC710"), | ||
}, | ||
.driver_data = (void *)(SOF_SDW_TGL_HDMI | | ||
SOF_SDW_PCH_DMIC | | ||
RT711_JD2_100K), | ||
}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we remove the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd say no. My suggestion is more generic, but handles only the LAPRC710 version (genuine Intel and rebranded variants as well). The entry above my suggestion handles both LAPRC510 and LAPRC710 versions, but only the genuine Intel variants. As much as I know, the LAPRC510 wasn't rebranded and marketed that way, so it doesn't need to be handled "in a generic" way. I think if we leave the code in this state it handles all the cases. |
||
/* TigerLake-SDCA devices */ | ||
{ | ||
.callback = sof_sdw_quirk_cb, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mosomate please modify the commit title include the prefix and add a proper commit message along with your sign-off and link to the issue.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ranj063 I modified the commit message. I hope it fulfills the guidelines now. I'm sorry, this is my first time contributing to the linux kernel.