File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ struct adr_remap {
16
16
};
17
17
18
18
/*
19
- * HP Spectre 360 Convertible devices do not expose the correct _ADR
20
- * in the DSDT.
19
+ * Some TigerLake devices based on an initial Intel BIOS do not expose
20
+ * the correct _ADR in the DSDT.
21
21
* Remap the bad _ADR values to the ones reported by hardware
22
22
*/
23
- static const struct adr_remap hp_spectre_360 [] = {
23
+ static const struct adr_remap intel_tgl_bios [] = {
24
24
{
25
25
0x000010025D070100ull ,
26
26
0x000020025D071100ull
@@ -61,7 +61,15 @@ static const struct dmi_system_id adr_remap_quirk_table[] = {
61
61
DMI_MATCH (DMI_SYS_VENDOR , "HP" ),
62
62
DMI_MATCH (DMI_PRODUCT_NAME , "HP Spectre x360 Convertible" ),
63
63
},
64
- .driver_data = (void * )hp_spectre_360 ,
64
+ .driver_data = (void * )intel_tgl_bios ,
65
+ },
66
+ {
67
+ /* quirk used for NUC15 'Bishop County' LAPBC510 and LAPBC710 skews */
68
+ .matches = {
69
+ DMI_MATCH (DMI_SYS_VENDOR , "Intel(R) Client Systems" ),
70
+ DMI_MATCH (DMI_PRODUCT_NAME , "LAPBC" ),
71
+ },
72
+ .driver_data = (void * )intel_tgl_bios ,
65
73
},
66
74
{
67
75
.matches = {
You can’t perform that action at this time.
0 commit comments