diff options
author | Hans de Goede <hdegoede@redhat.com> | 2022-07-10 19:36:58 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2022-07-10 19:37:19 +0200 |
commit | fe16ecaa0e629ade1e1cc09781c7cc77e5d2c8bc (patch) | |
tree | 985b109ddb6414aa06e4004333d40c0dab90c5a6 /drivers/platform/x86 | |
parent | e286044bf5b089801c20688c45b66fd6b6a712fa (diff) | |
download | linux-fe16ecaa0e629ade1e1cc09781c7cc77e5d2c8bc.tar.gz linux-fe16ecaa0e629ade1e1cc09781c7cc77e5d2c8bc.tar.bz2 linux-fe16ecaa0e629ade1e1cc09781c7cc77e5d2c8bc.zip |
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
Diffstat (limited to 'drivers/platform/x86')
-rw-r--r-- | drivers/platform/x86/intel/atomisp2/led.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel/atomisp2/led.c b/drivers/platform/x86/intel/atomisp2/led.c index 5935dfca166f..10077a61d8c5 100644 --- a/drivers/platform/x86/intel/atomisp2/led.c +++ b/drivers/platform/x86/intel/atomisp2/led.c @@ -50,7 +50,8 @@ static const struct dmi_system_id atomisp2_led_systems[] __initconst = { { .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), - DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TA"), + /* Non exact match to also match T100TAF */ + DMI_MATCH(DMI_PRODUCT_NAME, "T100TA"), }, .driver_data = &asus_t100ta_lookup, }, |