Fix the register layout for the Buffer Descript List Entry. It

got jumbled around during some other cleanups and was causing
audio failures on some guests.

PR:		239341
Reported by:	shamaz.mazum@gmail.com
This commit is contained in:
Scott Long 2019-07-23 18:40:07 +00:00
parent 9a4f1a2492
commit 88880fd4cf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=350255

View File

@ -80,10 +80,10 @@ typedef void (*hda_set_reg_handler)(struct hda_softc *sc, uint32_t offset,
uint32_t old);
struct hda_bdle {
uint32_t addrh;
uint32_t addrl;
uint32_t ioc;
uint32_t addrh;
uint32_t len;
uint32_t ioc;
} __packed;
struct hda_bdle_desc {