Index: ich.c =================================================================== RCS file: /home/ncvs/src/sys/dev/sound/pci/ich.c,v retrieving revision 1.3.2.6 diff -r1.3.2.6 ich.c 140a141,155 > /* check global status shows codecs ready. (codec ready bit > * in GCR == AC97 frame valid bit?) */ > for(i = 0; i < 10000; i++) { > data = ich_rd(sc, ICH_REG_GLOB_STA, 4); > /* primary ready & (secondary not present or is ready) */ > if ((data & ICH_GLOB_STA_PCR) & > (((data & ICH_GLOB_STA_SRES) == 0) || > (data & ICH_GLOB_STA_SCR))) > break; > DELAY(1000); > } > if (i != 0) > device_printf(sc->dev, "Ready took %u usecs\n", i * 1000); > > /* This seems like a complete waste of time ;-) */ 146a162 >