git: 325ba120558e - main - LinuxKPI: in efi.h include queue.h
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 15 Nov 2022 23:11:30 UTC
The branch main has been updated by bz: URL: https://cgit.FreeBSD.org/src/commit/?id=325ba120558e9ccfa9bb876c20d9c1a4463930e9 commit 325ba120558e9ccfa9bb876c20d9c1a4463930e9 Author: Bjoern A. Zeeb <bz@FreeBSD.org> AuthorDate: 2022-11-15 23:08:05 +0000 Commit: Bjoern A. Zeeb <bz@FreeBSD.org> CommitDate: 2022-11-15 23:08:05 +0000 LinuxKPI: in efi.h include queue.h sys/linker.h needs sys/queue.h; this gets another wireless driver closer to compiling on main. MFC after: 3 days --- sys/compat/linuxkpi/common/include/linux/efi.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/compat/linuxkpi/common/include/linux/efi.h b/sys/compat/linuxkpi/common/include/linux/efi.h index 03702bba557a..a485b4b1fd94 100644 --- a/sys/compat/linuxkpi/common/include/linux/efi.h +++ b/sys/compat/linuxkpi/common/include/linux/efi.h @@ -29,6 +29,7 @@ #define _LINUXKPI_LINUX_EFI_H_ #include <sys/param.h> +#include <sys/queue.h> #include <sys/linker.h> #include <sys/systm.h>