diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-03-28 17:57:12 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-03-28 17:57:12 +0000 |
commit | 3fd91d9dae92a0666a963dbc0a83105ce92df276 (patch) | |
tree | 5fe87d25de786dadf43e9116f3e833fba7a97e3d /sys/dev/pci/ahci_pci.c | |
parent | 5f53fe91d0fb705a04a73c507e8fd68083cf7d29 (diff) |
Reduce uvm include madness. Use <uvm/uvm_extern.h> instead of
<uvm/uvm.h> if possible and remove double inclusions.
ok beck@, mlarkin@, deraadt@
Diffstat (limited to 'sys/dev/pci/ahci_pci.c')
-rw-r--r-- | sys/dev/pci/ahci_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/ahci_pci.c b/sys/dev/pci/ahci_pci.c index 0b9f4648951..d26cd0a69c8 100644 --- a/sys/dev/pci/ahci_pci.c +++ b/sys/dev/pci/ahci_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahci_pci.c,v 1.3 2014/01/02 08:00:35 gilles Exp $ */ +/* $OpenBSD: ahci_pci.c,v 1.4 2014/03/28 17:57:11 mpi Exp $ */ /* * Copyright (c) 2006 David Gwynne <dlg@openbsd.org> @@ -160,7 +160,7 @@ int ahci_pci_detach(struct device *, int); int ahci_pci_activate(struct device *, int); #ifdef HIBERNATE -#include <uvm/uvm.h> +#include <uvm/uvm_extern.h> #include <sys/hibernate.h> #include <sys/disk.h> #include <sys/disklabel.h> |