From 7bf9834a55bcfb1d732ffcd17a3ab8ab0b5e8df3 Mon Sep 17 00:00:00 2001 From: Dan Moschuk Date: Fri, 9 Jun 2000 16:44:30 +0000 Subject: [PATCH] Increase delay from 10mu to 1000mu when reading play control size. This allows the YMF744 to initialize properly. --- sys/dev/sound/pci/ds1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/sound/pci/ds1.c b/sys/dev/sound/pci/ds1.c index d7197e715e8..3a81985ae7b 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);