Module Name: src Committed By: riastradh Date: Sun Dec 19 00:46:23 UTC 2021
Modified Files: src/sys/external/bsd/drm2/dist/include/drm: drm_file.h drm_vblank.h Log Message: drm_waitqueue_t needs <drm/drm_wait_netbsd>. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 \ src/sys/external/bsd/drm2/dist/include/drm/drm_file.h \ src/sys/external/bsd/drm2/dist/include/drm/drm_vblank.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/external/bsd/drm2/dist/include/drm/drm_file.h diff -u src/sys/external/bsd/drm2/dist/include/drm/drm_file.h:1.2 src/sys/external/bsd/drm2/dist/include/drm/drm_file.h:1.3 --- src/sys/external/bsd/drm2/dist/include/drm/drm_file.h:1.2 Sat Dec 18 23:45:46 2021 +++ src/sys/external/bsd/drm2/dist/include/drm/drm_file.h Sun Dec 19 00:46:23 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: drm_file.h,v 1.2 2021/12/18 23:45:46 riastradh Exp $ */ +/* $NetBSD: drm_file.h,v 1.3 2021/12/19 00:46:23 riastradh Exp $ */ /* * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. @@ -40,6 +40,10 @@ #include <drm/drm_prime.h> +#ifdef __NetBSD__ /* XXX */ +#include <drm/drm_wait_netbsd.h> +#endif + struct dma_fence; struct drm_file; struct drm_device; Index: src/sys/external/bsd/drm2/dist/include/drm/drm_vblank.h diff -u src/sys/external/bsd/drm2/dist/include/drm/drm_vblank.h:1.2 src/sys/external/bsd/drm2/dist/include/drm/drm_vblank.h:1.3 --- src/sys/external/bsd/drm2/dist/include/drm/drm_vblank.h:1.2 Sat Dec 18 23:45:46 2021 +++ src/sys/external/bsd/drm2/dist/include/drm/drm_vblank.h Sun Dec 19 00:46:23 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: drm_vblank.h,v 1.2 2021/12/18 23:45:46 riastradh Exp $ */ +/* $NetBSD: drm_vblank.h,v 1.3 2021/12/19 00:46:23 riastradh Exp $ */ /* * Copyright 2016 Intel Corp. @@ -33,6 +33,10 @@ #include <drm/drm_file.h> #include <drm/drm_modes.h> +#ifdef __NetBSD__ /* XXX */ +#include <drm/drm_wait_netbsd.h> +#endif + struct drm_device; struct drm_crtc;