mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
12 lines
233 B
C
12 lines
233 B
C
![]() |
#ifndef __ACPI_VIDEO_H
|
||
|
#define __ACPI_VIDEO_H
|
||
|
|
||
|
#if (defined CONFIG_ACPI_VIDEO || defined CONFIG_ACPI_VIDEO_MODULE)
|
||
|
extern int acpi_video_register(void);
|
||
|
#else
|
||
|
static inline int acpi_video_register(void) { return 0; }
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|