summaryrefslogtreecommitdiffstats
path: root/sys/pci/aic7870.c
diff options
context:
space:
mode:
authorgibbs <gibbs@FreeBSD.org>1996-05-23 15:02:18 +0000
committergibbs <gibbs@FreeBSD.org>1996-05-23 15:02:18 +0000
commite7580e953680afd240217d7e4591e5de26317b24 (patch)
treeed3bbb1736c5489cf6babf9ed8e6961e191c7602 /sys/pci/aic7870.c
parentad3641fb258265d38ca7a6c3445b432c038a17b1 (diff)
downloadFreeBSD-src-e7580e953680afd240217d7e4591e5de26317b24.zip
FreeBSD-src-e7580e953680afd240217d7e4591e5de26317b24.tar.gz
Correct a botched commit from yesturday. It helps to bring over the
right patch file.<sigh>
Diffstat (limited to 'sys/pci/aic7870.c')
-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 20eb453c..13672e5 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.33 1996/05/12 16:25:32 gibbs Exp $
+ * $Id: aic7870.c,v 1.34 1996/05/21 18:38:41 gibbs Exp $
*/
#include <pci.h>
@@ -528,7 +528,7 @@ load_seeprom(ahc)
int i;
int max_targ = sc.max_targets & CFMAXTARG;
- for(i = 0; i <= max_targ; i++){
+ for(i = 0; i < max_targ; i++){
u_char target_settings;
target_settings = (sc.device_flags[i] & CFXFER) << 4;
if (sc.device_flags[i] & CFSYNCH)
OpenPOWER on IntegriCloud