mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Move the common.h header file to include/linux/platform_data/x86/int3472.h and add a "INTEL_INT3472" kernel-symbol-namespace to the exported symbols. This is a preparation patch for exporting some more symbols for re-use in the atomisp driver. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Reviewed-by: Sakari Ailus <sakari.ailus@linux.intel.com> Reviewed-by: Andy Shevchenko <andy@kernel.org> Link: https://lore.kernel.org/r/20250507184737.154747-2-hdegoede@redhat.com Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
21 lines
539 B
C
21 lines
539 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/* Author: Hans de Goede <hansg@kernel.org> */
|
|
|
|
#include <linux/dmi.h>
|
|
#include <linux/platform_data/x86/int3472.h>
|
|
|
|
static const struct int3472_discrete_quirks lenovo_miix_510_quirks = {
|
|
.avdd_second_sensor = "i2c-OVTI2680:00",
|
|
};
|
|
|
|
const struct dmi_system_id skl_int3472_discrete_quirks[] = {
|
|
{
|
|
/* Lenovo Miix 510-12IKB */
|
|
.matches = {
|
|
DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
|
|
DMI_MATCH(DMI_PRODUCT_VERSION, "MIIX 510-12IKB"),
|
|
},
|
|
.driver_data = (void *)&lenovo_miix_510_quirks,
|
|
},
|
|
{ }
|
|
};
|