Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Jan 2023 08:54:14 GMT
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 1e7e886bab96 - stable/13 - linuxkpi: Include `errno.h` from `acpi/video.h`
Message-ID:  <202301240854.30O8sEiP036227@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by manu:

URL: https://cgit.FreeBSD.org/src/commit/?id=1e7e886bab969f44ca4eb00d5b2d8636a3ddef09

commit 1e7e886bab969f44ca4eb00d5b2d8636a3ddef09
Author:     Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
AuthorDate: 2022-12-30 09:48:01 +0000
Commit:     Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2023-01-24 09:08:01 +0000

    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
    
    (cherry picked from commit 8dfb5571c4d88b2320407968b14590aa80b44fb3)
---
 sys/compat/linuxkpi/common/include/acpi/video.h | 2 ++
 1 file changed, 2 insertions(+)

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202301240854.30O8sEiP036227>