diff options
author | dfr <dfr@FreeBSD.org> | 1998-09-26 14:37:49 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 1998-09-26 14:37:49 +0000 |
commit | 36a8222236d44faee4387dca3d7f200b6ebfdf03 (patch) | |
tree | a3ae180f07686ececae0eeb60d3109625dbb92de /sys/dev/isp | |
parent | 86ef5d7966428ec64d209e9b55d1f7ddad4bdc76 (diff) | |
download | FreeBSD-src-36a8222236d44faee4387dca3d7f200b6ebfdf03.zip FreeBSD-src-36a8222236d44faee4387dca3d7f200b6ebfdf03.tar.gz |
Add hooks so that the alpha can detect which disk has the root partition.
Diffstat (limited to 'sys/dev/isp')
-rw-r--r-- | sys/dev/isp/isp_pci.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/isp/isp_pci.c b/sys/dev/isp/isp_pci.c index 29ac3ab..ae7842b 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 |