diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-08-05 17:42:59 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-08-05 17:42:59 +0000 |
commit | d102fc05707e13b439b4378cfa5481efb790daf9 (patch) | |
tree | 296a3c33e8b0766c4dd7a957d6bfd81c6d3ea8f5 /sys/dev/pci/eso.c | |
parent | 7e187c4469a470a003b81d84833cb672546bf2b9 (diff) |
Use config_defer when a silicon bug hits
Diffstat (limited to 'sys/dev/pci/eso.c')
-rw-r--r-- | sys/dev/pci/eso.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/pci/eso.c b/sys/dev/pci/eso.c index 8d49f3cd025..e7306715bed 100644 --- a/sys/dev/pci/eso.c +++ b/sys/dev/pci/eso.c @@ -1,4 +1,4 @@ -/* $OpenBSD: eso.c,v 1.2 1999/08/05 05:32:41 deraadt Exp $ */ +/* $OpenBSD: eso.c,v 1.3 1999/08/05 17:42:58 niklas Exp $ */ /* $NetBSD: eso.c,v 1.3 1999/08/02 17:37:43 augustss Exp $ */ /* @@ -380,11 +380,7 @@ eso_attach(parent, self, aux) DPRINTF(("%s: VC I/O space at 0x%lx not suitable, deferring\n", sc->sc_dev.dv_xname, (unsigned long)vcbase)); sc->sc_pa = *pa; -#ifdef __OpenBSD__ - panic("config_defer not implemented"); -#else config_defer(self, eso_defer); -#endif } audio_attach_mi(&eso_hw_if, sc, &sc->sc_dev); |