mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Increase delay from 10mu to 1000mu when reading play control size. This
allows the YMF744 to initialize properly.
This commit is contained in:
parent
571ce5b158
commit
7bf9834a55
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue