diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-02-28 15:14:09 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-02-28 15:14:09 +0000 |
commit | 9abcd296518d58c0a266bec4849120b4a52fcd9d (patch) | |
tree | 299dae37dd48870c97523e9b3f505423acdec6ff /sys/dev/pci/ami_pci.c | |
parent | 52fef35c1f233e79c61c7499a2e5da4ba0f9f8be (diff) |
typo; from weissmanndude
Diffstat (limited to 'sys/dev/pci/ami_pci.c')
-rw-r--r-- | sys/dev/pci/ami_pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/ami_pci.c b/sys/dev/pci/ami_pci.c index 8c01bc95817..97080343462 100644 --- a/sys/dev/pci/ami_pci.c +++ b/sys/dev/pci/ami_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ami_pci.c,v 1.13 2002/12/10 23:13:59 miod Exp $ */ +/* $OpenBSD: ami_pci.c,v 1.14 2003/02/28 15:14:08 mickey Exp $ */ /* * Copyright (c) 2001 Michael Shalayeff @@ -203,7 +203,7 @@ ami_pci_attach(parent, self, aux) bus_space_unmap(sc->iot, sc->ioh, size); } - printf(": %s", intrstr); + printf(": %s\n", intrstr); csr = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_SUBSYS_ID_REG); for (ssp = ami_pci_subsys; ssp->id; ssp++) @@ -245,7 +245,7 @@ ami_pci_attach(parent, self, aux) default: lhc = "32b"; } - printf(" %s/%s\n%s", model, lhc, sc->sc_dev.dv_xname); + sprintf(sc->sc_raidconfig.rc_name, "%s/%s", model, lhc); if (ami_attach(sc)) { pci_intr_disestablish(pa->pa_pc, sc->sc_ih); |