diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2006-07-10 07:54:44 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2006-07-10 07:54:44 +0000 |
commit | d8d88b0a70d9c057283856e9568a3cf02cd0ad41 (patch) | |
tree | 85c989f19163a9ae5e5eefdaa2bbeb59589970b2 | |
parent | 95a5f9b79f742216a551b078c09336e824fda04d (diff) |
remove ifdef __OtherBSD__. no binary change
-rw-r--r-- | sys/dev/pci/ehci_pci.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/sys/dev/pci/ehci_pci.c b/sys/dev/pci/ehci_pci.c index b56b736c86b..0a79fabe46a 100644 --- a/sys/dev/pci/ehci_pci.c +++ b/sys/dev/pci/ehci_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ehci_pci.c,v 1.8 2005/12/30 03:43:04 dlg Exp $ */ +/* $OpenBSD: ehci_pci.c,v 1.9 2006/07/10 07:54:43 dlg Exp $ */ /* $NetBSD: ehci_pci.c,v 1.15 2004/04/23 21:13:06 itojun Exp $ */ /* @@ -37,11 +37,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include <sys/cdefs.h> -#if defined(__NetBSD__) -__KERNEL_RCSID(0, "$NetBSD: ehci_pci.c,v 1.15 2004/04/23 21:13:06 itojun Exp $"); -#endif - #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> @@ -115,14 +110,6 @@ ehci_pci_attach(struct device *parent, struct device *self, void *aux) char *devname = sc->sc.sc_bus.bdev.dv_xname; usbd_status r; -#if defined(__NetBSD__) - char devinfo[256]; - - pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo)); - printf(": %s (rev. 0x%02x)\n", devinfo, - PCI_REVISION(pa->pa_class)); -#endif - /* Map I/O registers */ if (pci_mapreg_map(pa, PCI_CBMEM, PCI_MAPREG_TYPE_MEM, 0, &sc->sc.iot, &sc->sc.ioh, NULL, &sc->sc.sc_size, 0)) { |