File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -1450,10 +1450,15 @@ struct i8k_fan_control_data {
1450
1450
};
1451
1451
1452
1452
enum i8k_fan_controls {
1453
+ I8K_FAN_30A3_31A3 ,
1453
1454
I8K_FAN_34A3_35A3 ,
1454
1455
};
1455
1456
1456
1457
static const struct i8k_fan_control_data i8k_fan_control_data [] __initconst = {
1458
+ [I8K_FAN_30A3_31A3 ] = {
1459
+ .manual_fan = 0x30a3 ,
1460
+ .auto_fan = 0x31a3 ,
1461
+ },
1457
1462
[I8K_FAN_34A3_35A3 ] = {
1458
1463
.manual_fan = 0x34a3 ,
1459
1464
.auto_fan = 0x35a3 ,
@@ -1517,6 +1522,14 @@ static const struct dmi_system_id i8k_whitelist_fan_control[] __initconst = {
1517
1522
},
1518
1523
.driver_data = (void * )& i8k_fan_control_data [I8K_FAN_34A3_35A3 ],
1519
1524
},
1525
+ {
1526
+ .ident = "Dell XPS 9315" ,
1527
+ .matches = {
1528
+ DMI_MATCH (DMI_SYS_VENDOR , "Dell Inc." ),
1529
+ DMI_EXACT_MATCH (DMI_PRODUCT_NAME , "XPS 9315" ),
1530
+ },
1531
+ .driver_data = (void * )& i8k_fan_control_data [I8K_FAN_30A3_31A3 ],
1532
+ },
1520
1533
{ }
1521
1534
};
1522
1535
You can’t perform that action at this time.
0 commit comments