]> git.proxmox.com Git - qemu.git/blobdiff - hw/grackle_pci.c
Get rid of _t suffix
[qemu.git] / hw / grackle_pci.c
index d878cf6748ac0cacab88eda7eb917919b2621368..555abd5c450532750eea9eac8eac66ca066ee84a 100644 (file)
@@ -37,7 +37,7 @@
 #define GRACKLE_DPRINTF(fmt, ...)
 #endif
 
-typedef target_phys_addr_t pci_addr_t;
+typedef a_target_phys_addr a_pci_addr;
 #include "pci_host.h"
 
 typedef struct GrackleState {
@@ -45,7 +45,7 @@ typedef struct GrackleState {
     PCIHostState host_state;
 } GrackleState;
 
-static void pci_grackle_config_writel (void *opaque, target_phys_addr_t addr,
+static void pci_grackle_config_writel (void *opaque, a_target_phys_addr addr,
                                        uint32_t val)
 {
     GrackleState *s = opaque;
@@ -58,7 +58,7 @@ static void pci_grackle_config_writel (void *opaque, target_phys_addr_t addr,
     s->host_state.config_reg = val;
 }
 
-static uint32_t pci_grackle_config_readl (void *opaque, target_phys_addr_t addr)
+static uint32_t pci_grackle_config_readl (void *opaque, a_target_phys_addr addr)
 {
     GrackleState *s = opaque;
     uint32_t val;