@@ -61,12 +61,36 @@ static struct awcc_quirks generic_quirks = {
61
61
static struct awcc_quirks empty_quirks ;
62
62
63
63
static const struct dmi_system_id awcc_dmi_table [] __initconst = {
64
+ {
65
+ .ident = "Alienware Area-51m R2" ,
66
+ .matches = {
67
+ DMI_MATCH (DMI_SYS_VENDOR , "Alienware" ),
68
+ DMI_MATCH (DMI_PRODUCT_NAME , "Alienware Area-51m R2" ),
69
+ },
70
+ .driver_data = & generic_quirks ,
71
+ },
72
+ {
73
+ .ident = "Alienware m16 R1" ,
74
+ .matches = {
75
+ DMI_MATCH (DMI_SYS_VENDOR , "Alienware" ),
76
+ DMI_MATCH (DMI_PRODUCT_NAME , "Alienware m16 R1" ),
77
+ },
78
+ .driver_data = & g_series_quirks ,
79
+ },
64
80
{
65
81
.ident = "Alienware m16 R1 AMD" ,
66
82
.matches = {
67
83
DMI_MATCH (DMI_SYS_VENDOR , "Alienware" ),
68
84
DMI_MATCH (DMI_PRODUCT_NAME , "Alienware m16 R1 AMD" ),
69
85
},
86
+ .driver_data = & g_series_quirks ,
87
+ },
88
+ {
89
+ .ident = "Alienware m16 R2" ,
90
+ .matches = {
91
+ DMI_MATCH (DMI_SYS_VENDOR , "Alienware" ),
92
+ DMI_MATCH (DMI_PRODUCT_NAME , "Alienware m16 R2" ),
93
+ },
70
94
.driver_data = & generic_quirks ,
71
95
},
72
96
{
@@ -93,6 +117,14 @@ static const struct dmi_system_id awcc_dmi_table[] __initconst = {
93
117
},
94
118
.driver_data = & generic_quirks ,
95
119
},
120
+ {
121
+ .ident = "Alienware x15 R2" ,
122
+ .matches = {
123
+ DMI_MATCH (DMI_SYS_VENDOR , "Alienware" ),
124
+ DMI_MATCH (DMI_PRODUCT_NAME , "Alienware x15 R2" ),
125
+ },
126
+ .driver_data = & generic_quirks ,
127
+ },
96
128
{
97
129
.ident = "Alienware x17 R2" ,
98
130
.matches = {
@@ -125,6 +157,14 @@ static const struct dmi_system_id awcc_dmi_table[] __initconst = {
125
157
},
126
158
.driver_data = & g_series_quirks ,
127
159
},
160
+ {
161
+ .ident = "Dell Inc. G16 7630" ,
162
+ .matches = {
163
+ DMI_MATCH (DMI_SYS_VENDOR , "Dell Inc." ),
164
+ DMI_MATCH (DMI_PRODUCT_NAME , "Dell G16 7630" ),
165
+ },
166
+ .driver_data = & g_series_quirks ,
167
+ },
128
168
{
129
169
.ident = "Dell Inc. G3 3500" ,
130
170
.matches = {
@@ -149,6 +189,14 @@ static const struct dmi_system_id awcc_dmi_table[] __initconst = {
149
189
},
150
190
.driver_data = & g_series_quirks ,
151
191
},
192
+ {
193
+ .ident = "Dell Inc. G5 5505" ,
194
+ .matches = {
195
+ DMI_MATCH (DMI_SYS_VENDOR , "Dell Inc." ),
196
+ DMI_MATCH (DMI_PRODUCT_NAME , "G5 5505" ),
197
+ },
198
+ .driver_data = & g_series_quirks ,
199
+ },
152
200
};
153
201
154
202
enum WMAX_THERMAL_INFORMATION_OPERATIONS {
0 commit comments