|
@@ -1519,9 +1519,9 @@ static void amdvi_init(AMDVIState *s)
|
|
|
/* reset AMDVI specific capabilities, all r/o */
|
|
|
pci_set_long(s->pci.dev.config + s->capab_offset, AMDVI_CAPAB_FEATURES);
|
|
|
pci_set_long(s->pci.dev.config + s->capab_offset + AMDVI_CAPAB_BAR_LOW,
|
|
|
- s->mmio.addr & ~(0xffff0000));
|
|
|
+ AMDVI_BASE_ADDR & ~(0xffff0000));
|
|
|
pci_set_long(s->pci.dev.config + s->capab_offset + AMDVI_CAPAB_BAR_HIGH,
|
|
|
- (s->mmio.addr & ~(0xffff)) >> 16);
|
|
|
+ (AMDVI_BASE_ADDR & ~(0xffff)) >> 16);
|
|
|
pci_set_long(s->pci.dev.config + s->capab_offset + AMDVI_CAPAB_RANGE,
|
|
|
0xff000000);
|
|
|
pci_set_long(s->pci.dev.config + s->capab_offset + AMDVI_CAPAB_MISC, 0);
|