Module Name: src
Committed By: riastradh
Date: Mon Aug 27 07:25:18 UTC 2018
Modified Files:
src/sys/external/bsd/drm2/dist/drm/i915: intel_dp.c
Log Message:
Need <asm/byteorder.h> for le16_to_cpu.
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/external/bsd/drm2/dist/drm/i915/intel_dp.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/dist/drm/i915/intel_dp.c
diff -u src/sys/external/bsd/drm2/dist/drm/i915/intel_dp.c:1.13 src/sys/external/bsd/drm2/dist/drm/i915/intel_dp.c:1.14
--- src/sys/external/bsd/drm2/dist/drm/i915/intel_dp.c:1.13 Mon Aug 27 07:21:48 2018
+++ src/sys/external/bsd/drm2/dist/drm/i915/intel_dp.c Mon Aug 27 07:25:18 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: intel_dp.c,v 1.13 2018/08/27 07:21:48 riastradh Exp $ */
+/* $NetBSD: intel_dp.c,v 1.14 2018/08/27 07:25:18 riastradh Exp $ */
/*
* Copyright © 2008 Intel Corporation
@@ -28,7 +28,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intel_dp.c,v 1.13 2018/08/27 07:21:48 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intel_dp.c,v 1.14 2018/08/27 07:25:18 riastradh Exp $");
#include <linux/i2c.h>
#include <linux/slab.h>
@@ -39,6 +39,7 @@ __KERNEL_RCSID(0, "$NetBSD: intel_dp.c,v
#include <linux/module.h>
#include <linux/printk.h>
#include <linux/pm_qos.h>
+#include <asm/byteorder.h>
#include <drm/drmP.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_crtc.h>