coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
ssdt.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #ifndef __SUPERIO_COMMON_SSDT_H__
4 #define __SUPERIO_COMMON_SSDT_H__
5 
6 #include <device/device.h>
7 
8 const char *superio_common_ldn_acpi_name(const struct device *dev);
9 void superio_common_fill_ssdt_generator(const struct device *dev);
10 
11 #endif /* __SUPERIO_COMMON_SSDT_H__ */
const char * superio_common_ldn_acpi_name(const struct device *dev)
Definition: ssdt.c:128
void superio_common_fill_ssdt_generator(const struct device *dev)
Definition: ssdt.c:162
Definition: device.h:107