Do not panic when trying to disestablish a pci interrupt.

This commit is contained in:
martin 2008-02-03 22:51:21 +00:00
parent c2b313f307
commit 4b72e076f4
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pci_machdep.c,v 1.54 2007/04/04 11:04:33 tnn Exp $ */
/* $NetBSD: pci_machdep.c,v 1.55 2008/02/03 22:51:21 martin Exp $ */
/*
* Copyright (c) 1999, 2000 Matthew R. Green
@ -33,7 +33,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.54 2007/04/04 11:04:33 tnn Exp $");
__KERNEL_RCSID(0, "$NetBSD: pci_machdep.c,v 1.55 2008/02/03 22:51:21 martin Exp $");
#include <sys/types.h>
#include <sys/param.h>
@ -554,5 +554,5 @@ pci_intr_disestablish(pci_chipset_tag_t pc, void *cookie)
DPRINTF(SPDB_INTR, ("pci_intr_disestablish: cookie %p\n", cookie));
/* XXX */
panic("can't disestablish PCI interrupts yet");
/* panic("can't disestablish PCI interrupts yet"); */
}