diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-02-27 21:46:45 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-02-27 21:46:45 +0000 |
commit | b6fe3e00faa5704466adb0b5bb55028925063e86 (patch) | |
tree | 33262bc517a3864cdb186a2d3d0f637b49e55b91 /sys/arch/i386/pci | |
parent | c171dfce3d71a3c4b3828ec29f9f4f64485884e2 (diff) |
Move setperf_prio to the machdep code, requested by deraadt@
ok deraadt@
Diffstat (limited to 'sys/arch/i386/pci')
-rw-r--r-- | sys/arch/i386/pci/pcib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/pci/pcib.c b/sys/arch/i386/pci/pcib.c index 2dc4c12138f..38a13ed68a6 100644 --- a/sys/arch/i386/pci/pcib.c +++ b/sys/arch/i386/pci/pcib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcib.c,v 1.13 2004/02/27 21:15:45 grange Exp $ */ +/* $OpenBSD: pcib.c,v 1.14 2004/02/27 21:46:44 grange Exp $ */ /* $NetBSD: pcib.c,v 1.6 1997/06/06 23:29:16 thorpej Exp $ */ /*- @@ -84,6 +84,8 @@ struct cfdriver pcib_cd = { NULL, "pcib", DV_DULL }; +extern int setperf_prio; + int pcibmatch(parent, match, aux) struct device *parent; |