Module Name: src
Committed By: riastradh
Date: Mon Aug 27 06:44:53 UTC 2018
Modified Files:
src/sys/external/bsd/drm2/dist/include/drm: drm_dp_helper.h
drm_dp_mst_helper.h
Log Message:
Include some necessary header files.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
src/sys/external/bsd/drm2/dist/include/drm/drm_dp_helper.h
cvs rdiff -u -r1.4 -r1.5 \
src/sys/external/bsd/drm2/dist/include/drm/drm_dp_mst_helper.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_dp_helper.h
diff -u src/sys/external/bsd/drm2/dist/include/drm/drm_dp_helper.h:1.2 src/sys/external/bsd/drm2/dist/include/drm/drm_dp_helper.h:1.3
--- src/sys/external/bsd/drm2/dist/include/drm/drm_dp_helper.h:1.2 Mon Aug 27 04:58:37 2018
+++ src/sys/external/bsd/drm2/dist/include/drm/drm_dp_helper.h Mon Aug 27 06:44:53 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: drm_dp_helper.h,v 1.2 2018/08/27 04:58:37 riastradh Exp $ */
+/* $NetBSD: drm_dp_helper.h,v 1.3 2018/08/27 06:44:53 riastradh Exp $ */
/*
* Copyright © 2008 Keith Packard
@@ -28,6 +28,7 @@
#include <linux/types.h>
#include <linux/i2c.h>
#include <linux/delay.h>
+#include <linux/mutex.h>
/*
* Unless otherwise noted, all values are from the DP 1.1a spec. Note that
Index: src/sys/external/bsd/drm2/dist/include/drm/drm_dp_mst_helper.h
diff -u src/sys/external/bsd/drm2/dist/include/drm/drm_dp_mst_helper.h:1.4 src/sys/external/bsd/drm2/dist/include/drm/drm_dp_mst_helper.h:1.5
--- src/sys/external/bsd/drm2/dist/include/drm/drm_dp_mst_helper.h:1.4 Mon Aug 27 06:44:41 2018
+++ src/sys/external/bsd/drm2/dist/include/drm/drm_dp_mst_helper.h Mon Aug 27 06:44:53 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: drm_dp_mst_helper.h,v 1.4 2018/08/27 06:44:41 riastradh Exp $ */
+/* $NetBSD: drm_dp_mst_helper.h,v 1.5 2018/08/27 06:44:53 riastradh Exp $ */
/*
* Copyright © 2014 Red Hat.
@@ -24,7 +24,11 @@
#ifndef _DRM_DP_MST_HELPER_H_
#define _DRM_DP_MST_HELPER_H_
+#include <linux/kref.h>
+#include <linux/list.h>
+#include <linux/mutex.h>
#include <linux/types.h>
+#include <linux/workqueue.h>
#include <drm/drm_dp_helper.h>
struct drm_dp_mst_branch;