svn commit: r211321 - stable/6/sys/dev/digi

Andre Oppermann andre at FreeBSD.org
Sat Aug 14 22:49:08 UTC 2010


Author: andre
Date: Sat Aug 14 22:49:07 2010
New Revision: 211321
URL: http://svn.freebsd.org/changeset/base/211321

Log:
  MFC r150132:
  
    Increase boot-time DigiBIOS initialization timeout to allow
    for a larger number of chained port modules.
  
    PR:		kern/55018
    Submitted by:	Cyrill Shevchuk <cyrill at cyrills.net>

Modified:
  stable/6/sys/dev/digi/digi.c

Modified: stable/6/sys/dev/digi/digi.c
==============================================================================
--- stable/6/sys/dev/digi/digi.c	Sat Aug 14 22:35:20 2010	(r211320)
+++ stable/6/sys/dev/digi/digi.c	Sat Aug 14 22:49:07 2010	(r211321)
@@ -360,7 +360,7 @@ digi_init(struct digi_softc *sc)
 	DLOG(DIGIDB_INIT, (sc->dev, "BIOS started after %d us\n", i));
 
 	for (i = 0; vW(ptr) != *(u_short *)"GD"; i++) {
-		if (i > 2*hz) {
+		if (i > 5*hz) {
 			log(LOG_ERR, "digi%d: BIOS boot failed "
 			    "(0x%02x != 0x%02x)\n",
 			    sc->res.unit, vW(ptr), *(u_short *)"GD");


More information about the svn-src-all mailing list