diff options
author | 2020-10-24 21:07:53 +0000 | |
---|---|---|
committer | 2020-10-24 21:07:53 +0000 | |
commit | 7d3be475015d77c5e974026882bb6e3b88fcfc4b (patch) | |
tree | 32f25a06fb0de1cd2ca8093771dac556cc6e08da | |
parent | /dev/drm* (diff) | |
download | wireguard-openbsd-7d3be475015d77c5e974026882bb6e3b88fcfc4b.tar.xz wireguard-openbsd-7d3be475015d77c5e974026882bb6e3b88fcfc4b.zip |
We will soon have DRM on powerpc64.
-rw-r--r-- | sys/uvm/uvm_device.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/uvm/uvm_device.c b/sys/uvm/uvm_device.c index 49ff9a1a7fc..2d69e61ac4c 100644 --- a/sys/uvm/uvm_device.c +++ b/sys/uvm/uvm_device.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_device.c,v 1.58 2020/10/21 09:08:14 mpi Exp $ */ +/* $OpenBSD: uvm_device.c,v 1.59 2020/10/24 21:07:53 kettenis Exp $ */ /* $NetBSD: uvm_device.c,v 1.30 2000/11/25 06:27:59 chs Exp $ */ /* @@ -43,7 +43,8 @@ #if defined(__amd64__) || defined(__arm64__) || \ defined(__i386__) || defined(__loongson__) || \ - defined(__macppc__) || defined(__sparc64__) + defined(__macppc__) || defined(__powerpc64__) || \ + defined(__sparc64__) #include "drm.h" #endif |