Skip to content

Commit b0d5598

Browse files
committed
platform/x86: intel_atomisp2_led: Also turn off the always-on camera LED on the Asus T100TAF
Like the Asus T100TA the Asus T100TAF has a camera LED which is always on by default and both also use the same GPIO for the LED. Relax the DMI match for the Asus T100TA so that it also matches the T100TAF. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Link: https://lore.kernel.org/r/20220710173658.221528-1-hdegoede@redhat.com
1 parent c483e7e commit b0d5598

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • drivers/platform/x86/intel/atomisp2

drivers/platform/x86/intel/atomisp2/led.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ static const struct dmi_system_id atomisp2_led_systems[] __initconst = {
5050
{
5151
.matches = {
5252
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
53-
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TA"),
53+
/* Non exact match to also match T100TAF */
54+
DMI_MATCH(DMI_PRODUCT_NAME, "T100TA"),
5455
},
5556
.driver_data = &asus_t100ta_lookup,
5657
},

0 commit comments

Comments
 (0)