diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-06-17 20:55:42 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-06-17 20:55:42 +0000 |
commit | f86c907fcf5d580bc631431904c592b15afaa229 (patch) | |
tree | 90c469c054f573dd5e23553123c010d96a7793c3 | |
parent | b03f593cd54ec4b4ec1bc83d66f3d1444a31ded3 (diff) |
Include <uvm/uvm.h> instead of <uvm/uvm_extern.h> to make sure
"struct uvm_object" gets defined on macppc as well.
ok miod@, deraadt@
-rw-r--r-- | sys/dev/pci/drm/drm_drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/drm/drm_drv.c b/sys/dev/pci/drm/drm_drv.c index e27ea7a2f85..65f0eb717cb 100644 --- a/sys/dev/pci/drm/drm_drv.c +++ b/sys/dev/pci/drm/drm_drv.c @@ -1,4 +1,4 @@ -/* $OpenBSD: drm_drv.c,v 1.107 2013/06/11 19:39:09 kettenis Exp $ */ +/* $OpenBSD: drm_drv.c,v 1.108 2013/06/17 20:55:41 kettenis Exp $ */ /*- * Copyright 2007-2009 Owain G. Ainsworth <oga@openbsd.org> * Copyright © 2008 Intel Corporation @@ -43,7 +43,7 @@ #include <sys/param.h> #include <sys/limits.h> #include <sys/systm.h> -#include <uvm/uvm_extern.h> +#include <uvm/uvm.h> #include <uvm/uvm_device.h> #include <sys/ttycom.h> /* for TIOCSGRP */ |