diff options
| author | Michael S. Tsirkin <mst@redhat.com> | 2010-02-22 11:40:19 +0200 |
|---|---|---|
| committer | Blue Swirl <blauwirbel@gmail.com> | 2010-02-22 21:02:46 +0000 |
| commit | 8414f45cb0896ab7720529793d83fb5a73092b96 (patch) | |
| tree | a55946398839ef743631c7daf6365e4b54383586 /hw/apb_pci.c | |
| parent | 23ef988cb38ef730f495ad25406c8df47d3139e9 (diff) | |
| download | focaccia-qemu-8414f45cb0896ab7720529793d83fb5a73092b96.tar.gz focaccia-qemu-8414f45cb0896ab7720529793d83fb5a73092b96.zip | |
apb_pci: minor cleanup
pci_data_write ignores high 8 bit in address, so there seems to be no need to set them in apb_pci. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/apb_pci.c')
| -rw-r--r-- | hw/apb_pci.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/hw/apb_pci.c b/hw/apb_pci.c index ebfcd4153f..f14b4327f7 100644 --- a/hw/apb_pci.c +++ b/hw/apb_pci.c @@ -187,8 +187,7 @@ static void apb_pci_config_write(APBState *s, target_phys_addr_t addr, uint32_t val, int size) { APB_DPRINTF("%s: addr " TARGET_FMT_lx " val %x\n", __func__, addr, val); - pci_data_write(s->host_state.bus, (addr & 0x00ffffff) | (1u << 31), val, - size); + pci_data_write(s->host_state.bus, addr, val, size); } static uint32_t apb_pci_config_read(APBState *s, target_phys_addr_t addr, @@ -196,8 +195,7 @@ static uint32_t apb_pci_config_read(APBState *s, target_phys_addr_t addr, { uint32_t ret; - ret = pci_data_read(s->host_state.bus, (addr & 0x00ffffff) | (1u << 31), - size); + ret = pci_data_read(s->host_state.bus, addr, size); APB_DPRINTF("%s: addr " TARGET_FMT_lx " -> %x\n", __func__, addr, ret); return ret; } |