1 // SPDX-License-Identifier: GPL-2.0 2 /* Author: Hans de Goede <hansg@kernel.org> */ 3 4 #include <linux/dmi.h> 5 6 #include "common.h" 7 8 static const struct int3472_discrete_quirks lenovo_miix_510_quirks = { 9 .avdd_second_sensor = "i2c-OVTI2680:00", 10 }; 11 12 const struct dmi_system_id skl_int3472_discrete_quirks[] = { 13 { 14 /* Lenovo Miix 510-12IKB */ 15 .matches = { 16 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), 17 DMI_MATCH(DMI_PRODUCT_VERSION, "MIIX 510-12IKB"), 18 }, 19 .driver_data = (void *)&lenovo_miix_510_quirks, 20 }, 21 { } 22 }; 23