mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 01:04:08 +08:00
ACPI / AC: Cleanup DMI quirk table
The 3 different entries we have sofar all use different identation and 2 of the use DMI_MATCH where as 1 unnecessarily used DMI_EXACT_MATCH Fix this to just use full tab idents for each level and DMI_MATCH everywhere and sort the entries alphabetically. Also add a bit of text to the comments explaining why the quirk is necessary. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
98d54f81e3
commit
04900fa3ab
@ -293,29 +293,30 @@ static int __init ac_do_not_check_pmic_quirk(const struct dmi_system_id *d)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Please keep this list alphabetically sorted */
|
||||||
static const struct dmi_system_id ac_dmi_table[] __initconst = {
|
static const struct dmi_system_id ac_dmi_table[] __initconst = {
|
||||||
{
|
{
|
||||||
/* Thinkpad e530 */
|
/* ECS EF20EA, AXP288 PMIC but uses separate fuel-gauge */
|
||||||
.callback = thinkpad_e530_quirk,
|
|
||||||
.matches = {
|
|
||||||
DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
|
|
||||||
DMI_MATCH(DMI_PRODUCT_NAME, "32597CG"),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
/* ECS EF20EA */
|
|
||||||
.callback = ac_do_not_check_pmic_quirk,
|
.callback = ac_do_not_check_pmic_quirk,
|
||||||
.matches = {
|
.matches = {
|
||||||
DMI_MATCH(DMI_PRODUCT_NAME, "EF20EA"),
|
DMI_MATCH(DMI_PRODUCT_NAME, "EF20EA"),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
/* Lenovo Ideapad Miix 320 */
|
/* Lenovo Ideapad Miix 320, AXP288 PMIC, separate fuel-gauge */
|
||||||
.callback = ac_do_not_check_pmic_quirk,
|
.callback = ac_do_not_check_pmic_quirk,
|
||||||
.matches = {
|
.matches = {
|
||||||
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
|
DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
|
||||||
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "80XF"),
|
DMI_MATCH(DMI_PRODUCT_NAME, "80XF"),
|
||||||
DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "Lenovo MIIX 320-10ICR"),
|
DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo MIIX 320-10ICR"),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
/* Lenovo Thinkpad e530, see comment in acpi_ac_notify() */
|
||||||
|
.callback = thinkpad_e530_quirk,
|
||||||
|
.matches = {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
|
||||||
|
DMI_MATCH(DMI_PRODUCT_NAME, "32597CG"),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{},
|
{},
|
||||||
|
Loading…
Reference in New Issue
Block a user