mirror of https://github.com/xqemu/xqemu.git
ac97: Allow more than 4 bus-masters
This commit is contained in:
parent
42579ba366
commit
9464bad500
|
@ -174,7 +174,7 @@ enum {
|
|||
CAS = 0x34
|
||||
};
|
||||
|
||||
#define GET_BM(index) (((index) >> 4) & 3)
|
||||
#define GET_BM(index) (((index) >> 4) & 7)
|
||||
|
||||
static void po_callback (void *opaque, int free);
|
||||
static void pi_callback (void *opaque, int avail);
|
||||
|
|
Loading…
Reference in New Issue