summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64
diff options
context:
space:
mode:
authorMatthew Dempsky <matthew@cvs.openbsd.org>2011-07-05 20:34:46 +0000
committerMatthew Dempsky <matthew@cvs.openbsd.org>2011-07-05 20:34:46 +0000
commit2b642d576deacc43a68295b539e64c826438ea4b (patch)
treec48cff1d7be79e8d70f5836de848c9f98311664e /sys/arch/sparc64
parent74947759f7e48d95d2830cbf77331b7643a5ccd8 (diff)
Replace last remaining users of link->scsibus with
link->bus->sc_dev.dv_unit.
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r--sys/arch/sparc64/sparc64/autoconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/sparc64/autoconf.c b/sys/arch/sparc64/sparc64/autoconf.c
index e07581a9c67..d789870b791 100644
--- a/sys/arch/sparc64/sparc64/autoconf.c
+++ b/sys/arch/sparc64/sparc64/autoconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: autoconf.c,v 1.111 2011/04/27 09:40:59 dlg Exp $ */
+/* $OpenBSD: autoconf.c,v 1.112 2011/07/05 20:34:45 matthew Exp $ */
/* $NetBSD: autoconf.c,v 1.51 2001/07/24 19:32:11 eeh Exp $ */
/*
@@ -1365,7 +1365,7 @@ device_register(struct device *dev, void *aux)
struct scsi_link *sl = saa->saa_sc_link;
if (strcmp(bp->name, "fp") == 0 &&
- bp->val[0] == sl->scsibus) {
+ bp->val[0] == sl->bus->sc_dev.dv_unit) {
DPRINTF(ACDB_BOOTDEV, ("\t-- matched component %s to %s\n",
bp->name, dev->dv_xname));
bootpath_store(1, bp + 1);