summaryrefslogtreecommitdiff
path: root/sys/uvm
diff options
context:
space:
mode:
authorVisa Hankala <visa@cvs.openbsd.org>2017-05-21 13:00:54 +0000
committerVisa Hankala <visa@cvs.openbsd.org>2017-05-21 13:00:54 +0000
commit799df8f1ea252a453c6519ce1108d5bb52ca6109 (patch)
tree09db6f2494a20adffaa9a5acbdd05425f5ef3761 /sys/uvm
parented3a9a1e17cf4ba2d1a8476904c0e1e989ac1aa1 (diff)
Enable radeondrm(4) on loongson to get accelerated graphics
with the RS780E chipset. OK kettenis@, jsg@
Diffstat (limited to 'sys/uvm')
-rw-r--r--sys/uvm/uvm_device.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/uvm/uvm_device.c b/sys/uvm/uvm_device.c
index 36cb8bf0eb1..c6001ec58b5 100644
--- a/sys/uvm/uvm_device.c
+++ b/sys/uvm/uvm_device.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvm_device.c,v 1.53 2016/09/16 02:35:42 dlg Exp $ */
+/* $OpenBSD: uvm_device.c,v 1.54 2017/05/21 13:00:53 visa Exp $ */
/* $NetBSD: uvm_device.c,v 1.30 2000/11/25 06:27:59 chs Exp $ */
/*
@@ -42,7 +42,8 @@
#include <uvm/uvm_device.h>
#if defined(__amd64__) || defined(__i386__) || \
- defined(__macppc__) || defined(__sparc64__)
+ defined(__loongson__) || defined(__macppc__) || \
+ defined(__sparc64__)
#include "drm.h"
#endif