linuxkpi: acpi/video.h: Add stubs acpi_video_{register,unregister}

Needed by i915.

Reviewed by:	bz
Obtained from:	drm-kmod
Sponsored by:	Beckhoff Automation GmbH & Co. KG
Differential Revision:	https://reviews.freebsd.org/D36102
This commit is contained in:
Emmanuel Vadot 2022-08-09 11:38:13 +02:00
parent 76d93395c5
commit afe53d7f7a

View File

@ -35,4 +35,16 @@
#define ACPI_VIDEO_NOTIFY_PROBE 0x81
static inline int
acpi_video_register(void)
{
return (-ENODEV);
}
static inline void
acpi_video_unregister(void)
{
}
#endif /* _LINUXKPI_ACPI_VIDEO_H_ */