summaryrefslogtreecommitdiffstats
path: root/sys/pci
diff options
context:
space:
mode:
authorgibbs <gibbs@FreeBSD.org>1996-06-08 06:55:55 +0000
committergibbs <gibbs@FreeBSD.org>1996-06-08 06:55:55 +0000
commitf26a3ce6a2a8fbc774d07ae08e9f77d87500f70f (patch)
tree5145e93fe6f3b4b43e50924ace5085202b74da70 /sys/pci
parent0fc884dc2a3c81566bd460098cfae9f2459f34ed (diff)
downloadFreeBSD-src-f26a3ce6a2a8fbc774d07ae08e9f77d87500f70f.zip
FreeBSD-src-f26a3ce6a2a8fbc774d07ae08e9f77d87500f70f.tar.gz
Only assume the scratch ram is valid (we were initialized by the BIOS)
if SCSIID is something other than 0.
Diffstat (limited to 'sys/pci')
-rw-r--r--sys/pci/aic7870.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pci/aic7870.c b/sys/pci/aic7870.c
index 8b0408f..f2436a6 100644
--- a/sys/pci/aic7870.c
+++ b/sys/pci/aic7870.c
@@ -29,7 +29,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: aic7870.c,v 1.35 1996/05/23 15:02:18 gibbs Exp $
+ * $Id: aic7870.c,v 1.36 1996/05/30 07:20:17 gibbs Exp $
*/
#if defined(__FreeBSD__)
@@ -550,7 +550,7 @@ ahc_pci_attach(parent, self, aux)
break;
}
}
- if(i != 0x60) {
+ if((i != 0x60) && (our_id != 0)) {
printf("%s: Using left over BIOS settings\n",
ahc_name(ahc));
ahc->flags &= ~AHC_USEDEFAULTS;
OpenPOWER on IntegriCloud