summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Rabson <dfr@FreeBSD.org>1998-09-26 14:37:49 +0000
committerDoug Rabson <dfr@FreeBSD.org>1998-09-26 14:37:49 +0000
commite37c045536d2f5480e3458aded4acf2a970ce3c4 (patch)
tree25cb9609645b4aacd9142db73d5209f6159578bc
parentfb44081bd06d825524c006a7b16e3537db1472cf (diff)
Notes
-rw-r--r--sys/dev/isp/isp_pci.c3
-rw-r--r--sys/pci/isp_pci.c3
-rw-r--r--sys/pci/ncr.c8
3 files changed, 12 insertions, 2 deletions
diff --git a/sys/dev/isp/isp_pci.c b/sys/dev/isp/isp_pci.c
index 29ac3abae79e..ae7842b2e079 100644
--- a/sys/dev/isp/isp_pci.c
+++ b/sys/dev/isp/isp_pci.c
@@ -339,6 +339,9 @@ isp_pci_attach(config_id, unit)
free(pcs, M_DEVBUF);
}
ISP_UNLOCK(isp);
+#ifdef __alpha__
+ alpha_register_pci_scsi(config_id->bus, config_id->slot, isp->isp_sim);
+#endif
}
#define PCI_BIU_REGS_OFF BIU_REGS_OFF
diff --git a/sys/pci/isp_pci.c b/sys/pci/isp_pci.c
index 29ac3abae79e..ae7842b2e079 100644
--- a/sys/pci/isp_pci.c
+++ b/sys/pci/isp_pci.c
@@ -339,6 +339,9 @@ isp_pci_attach(config_id, unit)
free(pcs, M_DEVBUF);
}
ISP_UNLOCK(isp);
+#ifdef __alpha__
+ alpha_register_pci_scsi(config_id->bus, config_id->slot, isp->isp_sim);
+#endif
}
#define PCI_BIU_REGS_OFF BIU_REGS_OFF
diff --git a/sys/pci/ncr.c b/sys/pci/ncr.c
index 407a75df4b1f..a60247813f6e 100644
--- a/sys/pci/ncr.c
+++ b/sys/pci/ncr.c
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: ncr.c,v 1.133 1998/09/22 21:42:46 ken Exp $
+** $Id: ncr.c,v 1.134 1998/09/26 14:29:59 dfr Exp $
**
** Device driver for the NCR 53C8XX PCI-SCSI-Controller Family.
**
@@ -1357,7 +1357,7 @@ static void ncr_attach (pcici_t tag, int unit);
static char ident[] =
- "\n$Id: ncr.c,v 1.133 1998/09/22 21:42:46 ken Exp $\n";
+ "\n$Id: ncr.c,v 1.134 1998/09/26 14:29:59 dfr Exp $\n";
static const u_long ncr_version = NCR_VERSION * 11
+ (u_long) sizeof (struct ncb) * 7
@@ -3863,6 +3863,10 @@ ncr_attach (pcici_t config_id, int unit)
return;
}
+#ifdef __alpha__
+ alpha_register_pci_scsi(config_id->bus, config_id->slot, np->sim);
+#endif
+
if (xpt_create_path(&np->path, /*periph*/NULL,
cam_sim_path(np->sim), CAM_TARGET_WILDCARD,
CAM_LUN_WILDCARD) != CAM_REQ_CMP) {