Date: Sat, 9 Jan 2021 23:28:06 GMT From: Neel Chauhan <nc@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 408c514f7398 - main - linuxkpi: Fix the "error: unknown type name 'u32'" compilation issue when building the Intel QAT/QuickAssist driver. Message-ID: <202101092328.109NS6cW099290@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by nc (ports committer): URL: https://cgit.FreeBSD.org/src/commit/?id=408c514f7398c457c580465ede2107a0325126ef commit 408c514f7398c457c580465ede2107a0325126ef Author: Neel Chauhan <nc@FreeBSD.org> AuthorDate: 2021-01-09 23:25:55 +0000 Commit: Neel Chauhan <nc@FreeBSD.org> CommitDate: 2021-01-09 23:27:04 +0000 linuxkpi: Fix the "error: unknown type name 'u32'" compilation issue when building the Intel QAT/QuickAssist driver. Approved by: hselasky, kib Differential Revision: https://reviews.freebsd.org/D28055 --- sys/compat/linuxkpi/common/include/linux/random.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/compat/linuxkpi/common/include/linux/random.h b/sys/compat/linuxkpi/common/include/linux/random.h index 14ea88237e1b..31d8b996aa0b 100644 --- a/sys/compat/linuxkpi/common/include/linux/random.h +++ b/sys/compat/linuxkpi/common/include/linux/random.h @@ -32,6 +32,7 @@ #ifndef _LINUX_RANDOM_H_ #define _LINUX_RANDOM_H_ +#include <linux/types.h> #include <sys/random.h> #include <sys/libkern.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101092328.109NS6cW099290>