mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-03 18:20:25 +02:00 
			
		
		
		
	ACPI / EC: Use ec_no_wakeup on more Thinkpad X1 Carbon 6th systems
The ec_no_wakeup matcher added for Thinkpad X1 Carbon 6th gen systems beyond matched only a single DMI model (20KGS3JF01), that didn't cover my laptop (20KH002JUS). Change to match based on DMI product family to cover all X1 6th gen systems. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
		
							parent
							
								
									9d3cce1e8b
								
							
						
					
					
						commit
						2c4d6baf1b
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -2042,7 +2042,7 @@ static const struct dmi_system_id acpi_ec_no_wakeup[] = {
 | 
				
			||||||
		.ident = "Thinkpad X1 Carbon 6th",
 | 
							.ident = "Thinkpad X1 Carbon 6th",
 | 
				
			||||||
		.matches = {
 | 
							.matches = {
 | 
				
			||||||
			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
 | 
								DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
 | 
				
			||||||
			DMI_MATCH(DMI_PRODUCT_NAME, "20KGS3JF01"),
 | 
								DMI_MATCH(DMI_PRODUCT_FAMILY, "Thinkpad X1 Carbon 6th"),
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
	{ },
 | 
						{ },
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue