// SPDX-License-Identifier: GPL-2.0-or-later /* * DMI based code to deal with broken DSDTs on X86 tablets which ship with * Android as (part of) the factory image. The factory kernels shipped on these * devices typically have a bunch of things hardcoded, rather than specified * in their DSDT. * * Copyright (C) 2021-2023 Hans de Goede <[email protected]> */ #include <linux/dmi.h> #include <linux/init.h> #include <linux/mod_devicetable.h> #include <linux/module.h> #include "x86-android-tablets.h" const struct dmi_system_id x86_android_tablet_ids[] __initconst = …; MODULE_DEVICE_TABLE(dmi, x86_android_tablet_ids);