mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-28 00:19:36 +00:00

Move the SMO88xx acpi_device_ids to a new dell-smo8800-ids.h header, so that these can be shared with the new dell-lis3lv02d code. Reviewed-by: Pali Rohár <pali@kernel.org> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Link: https://lore.kernel.org/r/20241209183557.7560-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>
28 lines
594 B
C
28 lines
594 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* ACPI SMO88XX lis3lv02d freefall / accelerometer device-ids.
|
|
*
|
|
* Copyright (C) 2012 Sonal Santan <sonal.santan@gmail.com>
|
|
* Copyright (C) 2014 Pali Rohár <pali@kernel.org>
|
|
*/
|
|
#ifndef _DELL_SMO8800_IDS_H_
|
|
#define _DELL_SMO8800_IDS_H_
|
|
|
|
#include <linux/mod_devicetable.h>
|
|
#include <linux/module.h>
|
|
|
|
static const struct acpi_device_id smo8800_ids[] = {
|
|
{ "SMO8800" },
|
|
{ "SMO8801" },
|
|
{ "SMO8810" },
|
|
{ "SMO8811" },
|
|
{ "SMO8820" },
|
|
{ "SMO8821" },
|
|
{ "SMO8830" },
|
|
{ "SMO8831" },
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(acpi, smo8800_ids);
|
|
|
|
#endif
|