diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2006-11-29 00:56:52 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2006-11-29 00:56:52 +0000 |
commit | f0f63afde8477e507ebe48153c7baf6a830655b8 (patch) | |
tree | b86672d05ee4bc15e912816288101f267a157694 | |
parent | 9785e1acb49488ac0dfc14ad14fec109ca144d0b (diff) |
oops, i missed a closing brace with the scsibus_attach_args fixup.
found by ian@
-rw-r--r-- | sys/dev/pci/iha_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/iha_pci.c b/sys/dev/pci/iha_pci.c index d787d1683d2..883aef59f73 100644 --- a/sys/dev/pci/iha_pci.c +++ b/sys/dev/pci/iha_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iha_pci.c,v 1.10 2006/11/28 23:59:45 dlg Exp $ */ +/* $OpenBSD: iha_pci.c,v 1.11 2006/11/29 00:56:51 dlg Exp $ */ /*------------------------------------------------------------------------- * * Device driver for the INI-9XXXU/UW or INIC-940/950 PCI SCSI Controller. @@ -128,5 +128,6 @@ iha_pci_attach(parent, self, aux) bzero(&saa, sizeof(saa)); saa.saa_sc_link = &sc->sc_link; config_found(&sc->sc_dev, &saa, scsiprint); + } } } |