diff options
author | Jean-Sébastien Pédron <dumbbell@FreeBSD.org> | 2022-12-30 09:48:01 +0000 |
---|---|---|
committer | Jean-Sébastien Pédron <dumbbell@FreeBSD.org> | 2023-01-02 21:05:27 +0000 |
commit | 8dfb5571c4d88b2320407968b14590aa80b44fb3 (patch) | |
tree | b1e98e1d6538c9dbbfe95479f6936aea3e76da48 | |
parent | e3e57edf4aac05d041ca55ff2f008c6109ef88d5 (diff) | |
download | src-8dfb5571c4d88b2320407968b14590aa80b44fb3.tar.gz src-8dfb5571c4d88b2320407968b14590aa80b44fb3.zip |
linuxkpi: Include `errno.h` from `acpi/video.h`
This defines `ENODEV` used in this header. This fixes a build failure in
the DRM drivers.
Reviewed by: bz
Approved by: bz
Differential Revision: https://reviews.freebsd.org/D37909
-rw-r--r-- | sys/compat/linuxkpi/common/include/acpi/video.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/compat/linuxkpi/common/include/acpi/video.h b/sys/compat/linuxkpi/common/include/acpi/video.h index df1844502ba8..ace4a42a1016 100644 --- a/sys/compat/linuxkpi/common/include/acpi/video.h +++ b/sys/compat/linuxkpi/common/include/acpi/video.h @@ -31,6 +31,8 @@ #ifndef _LINUXKPI_ACPI_VIDEO_H_ #define _LINUXKPI_ACPI_VIDEO_H_ +#include <sys/errno.h> + #define ACPI_VIDEO_CLASS "video" #define ACPI_VIDEO_NOTIFY_PROBE 0x81 |