diff options
author | dan <dan@FreeBSD.org> | 2000-06-09 16:44:30 +0000 |
---|---|---|
committer | dan <dan@FreeBSD.org> | 2000-06-09 16:44:30 +0000 |
commit | 1226423ba74bbb12b78fdec0a86fb64d638ae045 (patch) | |
tree | 8729663d84925c84938be651f0095f2a07cc1916 /sys/dev/sound | |
parent | b63dd89678654021d2b39b07fb55bf80096acecd (diff) | |
download | FreeBSD-src-1226423ba74bbb12b78fdec0a86fb64d638ae045.zip FreeBSD-src-1226423ba74bbb12b78fdec0a86fb64d638ae045.tar.gz |
Increase delay from 10mu to 1000mu when reading play control size. This
allows the YMF744 to initialize properly.
Diffstat (limited to 'sys/dev/sound')
-rw-r--r-- | sys/dev/sound/pci/ds1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pci/ds1.c b/sys/dev/sound/pci/ds1.c index d7197e7..3a81985 100644 --- a/sys/dev/sound/pci/ds1.c +++ b/sys/dev/sound/pci/ds1.c @@ -798,7 +798,7 @@ ds_init(struct sc_info *sc) pcs = ds_rd(sc, YDSXGR_PLAYCTRLSIZE, 4) << 2; if (pcs == sizeof(struct pbank)) break; - DELAY(10); + DELAY(1000); } if (pcs != sizeof(struct pbank)) { device_printf(sc->dev, "preposterous playctrlsize (%d)\n", pcs); |