1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * ACPI SMO88XX lis3lv02d freefall / accelerometer device-ids. 4 * 5 * Copyright (C) 2012 Sonal Santan <[email protected]> 6 * Copyright (C) 2014 Pali Rohár <[email protected]> 7 */ 8 #ifndef _DELL_SMO8800_IDS_H_ 9 #define _DELL_SMO8800_IDS_H_ 10 11 #include <linux/mod_devicetable.h> 12 #include <linux/module.h> 13 14 static const struct acpi_device_id smo8800_ids[] = { 15 { "SMO8800" }, 16 { "SMO8801" }, 17 { "SMO8810" }, 18 { "SMO8811" }, 19 { "SMO8820" }, 20 { "SMO8821" }, 21 { "SMO8830" }, 22 { "SMO8831" }, 23 { } 24 }; 25 MODULE_DEVICE_TABLE(acpi, smo8800_ids); 26 27 #endif 28