1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef __SUPERIO_COMMON_CHIP_H__ 4 #define __SUPERIO_COMMON_CHIP_H__ 5 6 struct superio_common_config { 7 /* FIXME: Add enter conf/exit conf codes here for SSDT generation */ 8 /* Rarely, boards may have more than one SuperIO. Give each SuperIO a 9 * unique name for ACPI. The default is 'SIO0'. */ 10 char acpi_name[5]; 11 }; 12 13 #endif /* __SUPERIO_COMMON_CHIP_H__ */ 14