Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.1 13 lines 262 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2 3#ifndef __ACPI_AGDI_H__ 4#define __ACPI_AGDI_H__ 5 6#include <linux/acpi.h> 7 8#ifdef CONFIG_ACPI_AGDI 9void __init acpi_agdi_init(void); 10#else 11static inline void acpi_agdi_init(void) {} 12#endif 13#endif /* __ACPI_AGDI_H__ */