Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch delint: don't try & return something from void pci_...
details: https://anonhg.NetBSD.org/src/rev/92b1b93a6f4b
branches: trunk
changeset: 509914:92b1b93a6f4b
user: lukem <lukem%NetBSD.org@localhost>
date: Tue May 15 14:48:57 2001 +0000
description:
delint: don't try & return something from void pci_intr_disestablish()
diffstat:
sys/arch/i386/pci/pci_machdep.c | 4 ++--
sys/arch/prep/pci/pci_machdep.c | 4 ++--
sys/arch/sandpoint/pci/pci_machdep.c | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diffs (52 lines):
diff -r 0c6e786398ee -r 92b1b93a6f4b sys/arch/i386/pci/pci_machdep.c
--- a/sys/arch/i386/pci/pci_machdep.c Tue May 15 14:37:36 2001 +0000
+++ b/sys/arch/i386/pci/pci_machdep.c Tue May 15 14:48:57 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pci_machdep.c,v 1.40 2000/12/28 22:59:09 sommerfeld Exp $ */
+/* $NetBSD: pci_machdep.c,v 1.41 2001/05/15 14:48:57 lukem Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -564,7 +564,7 @@
void *cookie;
{
- return isa_intr_disestablish(NULL, cookie);
+ isa_intr_disestablish(NULL, cookie);
}
/*
diff -r 0c6e786398ee -r 92b1b93a6f4b sys/arch/prep/pci/pci_machdep.c
--- a/sys/arch/prep/pci/pci_machdep.c Tue May 15 14:37:36 2001 +0000
+++ b/sys/arch/prep/pci/pci_machdep.c Tue May 15 14:48:57 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pci_machdep.c,v 1.8 2000/12/28 22:59:10 sommerfeld Exp $ */
+/* $NetBSD: pci_machdep.c,v 1.9 2001/05/15 14:48:58 lukem Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
@@ -416,5 +416,5 @@
void *cookie;
{
- return isa_intr_disestablish(NULL, cookie);
+ isa_intr_disestablish(NULL, cookie);
}
diff -r 0c6e786398ee -r 92b1b93a6f4b sys/arch/sandpoint/pci/pci_machdep.c
--- a/sys/arch/sandpoint/pci/pci_machdep.c Tue May 15 14:37:36 2001 +0000
+++ b/sys/arch/sandpoint/pci/pci_machdep.c Tue May 15 14:48:57 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pci_machdep.c,v 1.2 2001/02/07 05:49:17 briggs Exp $ */
+/* $NetBSD: pci_machdep.c,v 1.3 2001/05/15 14:48:58 lukem Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
@@ -286,7 +286,7 @@
pci_chipset_tag_t pc;
void *cookie;
{
- return intr_disestablish(cookie);
+ intr_disestablish(cookie);
}
void
Home |
Main Index |
Thread Index |
Old Index