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 v2.6.31-rc9 13 lines 333 B view raw
1#ifndef __ACPI_VIDEO_H 2#define __ACPI_VIDEO_H 3 4#if (defined CONFIG_ACPI_VIDEO || defined CONFIG_ACPI_VIDEO_MODULE) 5extern int acpi_video_register(void); 6extern void acpi_video_unregister(void); 7#else 8static inline int acpi_video_register(void) { return 0; } 9static inline void acpi_video_unregister(void) { return; } 10#endif 11 12#endif 13