Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/sbus The trigger for not downloading f/w is now a



details:   https://anonhg.NetBSD.org/src/rev/746340e0d069
branches:  trunk
changeset: 480346:746340e0d069
user:      mjacob <mjacob%NetBSD.org@localhost>
date:      Sun Jan 09 18:55:11 2000 +0000

description:
The trigger for not downloading f/w is now a
NULL f/w pointer, not a nonzero f/w length.

diffstat:

 sys/dev/sbus/isp_sbus.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 675173ef61ae -r 746340e0d069 sys/dev/sbus/isp_sbus.c
--- a/sys/dev/sbus/isp_sbus.c   Sun Jan 09 18:44:40 2000 +0000
+++ b/sys/dev/sbus/isp_sbus.c   Sun Jan 09 18:55:11 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: isp_sbus.c,v 1.19 2000/01/09 18:44:40 mjacob Exp $ */
+/* $NetBSD: isp_sbus.c,v 1.20 2000/01/09 18:55:11 mjacob Exp $ */
 /*
  * SBus specific probe and attach routines for Qlogic ISP SCSI adapters.
  *
@@ -125,6 +125,7 @@
        return (rv);
 }
 
+
 static void
 isp_sbus_attach(parent, self, aux)
         struct device *parent, *self;
@@ -180,7 +181,7 @@
         */
        if (strcmp("PTI,ptisp", sa->sa_name) == 0 ||
            strcmp("ptisp", sa->sa_name) == 0) {
-               sbc->sbus_mdvec.dv_fwlen = 0;
+               sbc->sbus_mdvec.dv_ispfw = NULL;
        }
 
        isp->isp_mdvec = &sbc->sbus_mdvec;



Home | Main Index | Thread Index | Old Index