The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=67df313015906d84d90df8e37795885e81cf8da5
commit 67df313015906d84d90df8e37795885e81cf8da5 Author: Sourojeet A <[email protected]> AuthorDate: 2026-06-03 21:58:53 +0000 Commit: Ed Maste <[email protected]> CommitDate: 2026-06-03 23:40:55 +0000 linuxkpi: Make pm_qos.h self-contained Include <linux/types.h> for `false`. This is needed by amdgpu somewhere between Linux 6.12 and 6.15. Reviewed by: Minsoo Choo <[email protected]>, bz Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D57415 --- sys/compat/linuxkpi/common/include/linux/pm_qos.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/compat/linuxkpi/common/include/linux/pm_qos.h b/sys/compat/linuxkpi/common/include/linux/pm_qos.h index 47c41a819ba8..97d16369a704 100644 --- a/sys/compat/linuxkpi/common/include/linux/pm_qos.h +++ b/sys/compat/linuxkpi/common/include/linux/pm_qos.h @@ -28,6 +28,8 @@ #ifndef _LINUXKPI_LINUX_PM_QOS_H #define _LINUXKPI_LINUX_PM_QOS_H +#include <linux/types.h> + #define PM_QOS_DEFAULT_VALUE (-1) struct pm_qos_request {
