Module Name: src
Committed By: riastradh
Date: Mon Aug 27 06:57:10 UTC 2018
Modified Files:
src/sys/external/bsd/drm2/drm: drm_fops.c
Log Message:
Fix headers for drm_fops.c.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/external/bsd/drm2/drm/drm_fops.c
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/drm/drm_fops.c
diff -u src/sys/external/bsd/drm2/drm/drm_fops.c:1.6 src/sys/external/bsd/drm2/drm/drm_fops.c:1.7
--- src/sys/external/bsd/drm2/drm/drm_fops.c:1.6 Mon Aug 27 06:49:12 2018
+++ src/sys/external/bsd/drm2/drm/drm_fops.c Mon Aug 27 06:57:10 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: drm_fops.c,v 1.6 2018/08/27 06:49:12 riastradh Exp $ */
+/* $NetBSD: drm_fops.c,v 1.7 2018/08/27 06:57:10 riastradh Exp $ */
/*-
* Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -30,13 +30,14 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: drm_fops.c,v 1.6 2018/08/27 06:49:12 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: drm_fops.c,v 1.7 2018/08/27 06:57:10 riastradh Exp $");
#include <sys/param.h>
#include <sys/select.h>
#include <drm/drmP.h>
-#include "../dist/drm/drm_legacy.h"
+#include <drm/drm_internal.h>
+#include <drm/drm_legacy.h>
static int drm_open_file_master(struct drm_file *);