diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-07-07 16:40:06 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-07-07 16:40:06 +0000 |
commit | 217cc67189cb76970ce73194bbea7d45e5483ea5 (patch) | |
tree | 65a4a9f26ec28ace968877b65081bf41516b081d /sys | |
parent | 068cc60dc1971ca29006407e7907b017f5b50cc2 (diff) |
change panic into printf for pci_intr_disestablish()
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/dev/pci_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/pci_machdep.c b/sys/arch/sparc64/dev/pci_machdep.c index cc7f5128cfb..e89fdf2f211 100644 --- a/sys/arch/sparc64/dev/pci_machdep.c +++ b/sys/arch/sparc64/dev/pci_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.c,v 1.16 2005/06/30 04:02:52 marco Exp $ */ +/* $OpenBSD: pci_machdep.c,v 1.17 2005/07/07 16:40:05 brad Exp $ */ /* $NetBSD: pci_machdep.c,v 1.22 2001/07/20 00:07:13 eeh Exp $ */ /* @@ -491,5 +491,5 @@ pci_intr_disestablish(pc, cookie) DPRINTF(SPDB_INTR, ("pci_intr_disestablish: cookie %p\n", cookie)); /* XXX */ - panic("can't disestablish PCI interrupts yet"); + printf("can't disestablish PCI interrupts yet\n"); } |