diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-06-27 02:36:07 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-06-27 02:36:07 +0000 |
commit | 09aae188a83576482b0b7a9337c605d15b8c4fc0 (patch) | |
tree | c4f94054e61047bcca70c7b4fa8c4d6732d8f445 | |
parent | 35f77c58ffe32163d5689e2268a15c29fd31e9d2 (diff) |
rev 1.41
delint: don't try & return something from void pci_intr_disestablish()
From NetBSD
ok mickey@
-rw-r--r-- | sys/arch/i386/pci/pci_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/pci/pci_machdep.c b/sys/arch/i386/pci/pci_machdep.c index 8b2e8c79fde..83439bbcbad 100644 --- a/sys/arch/i386/pci/pci_machdep.c +++ b/sys/arch/i386/pci/pci_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.c,v 1.26 2004/12/23 17:43:18 aaron Exp $ */ +/* $OpenBSD: pci_machdep.c,v 1.27 2005/06/27 02:36:06 brad Exp $ */ /* $NetBSD: pci_machdep.c,v 1.28 1997/06/06 23:29:17 thorpej Exp $ */ /*- @@ -578,5 +578,5 @@ pci_intr_disestablish(pc, cookie) void *cookie; { /* XXX oh, unroute the pci int link? */ - return (isa_intr_disestablish(NULL, cookie)); + isa_intr_disestablish(NULL, cookie); } |