diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-01 16:12:16 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-01 16:12:16 -0500 |
commit | c227f0995e1722a1abccc28cadf0664266bd8043 (patch) | |
tree | 39e92c2f818e3e8144978740b914731613af0e40 /hw/sh_pci.c | |
parent | 99a0949b720a0936da2052cb9a46db04ffc6db29 (diff) |
Revert "Get rid of _t suffix"
In the very least, a change like this requires discussion on the list.
The naming convention is goofy and it causes a massive merge problem. Something
like this _must_ be presented on the list first so people can provide input
and cope with it.
This reverts commit 99a0949b720a0936da2052cb9a46db04ffc6db29.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/sh_pci.c')
-rw-r--r-- | hw/sh_pci.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/hw/sh_pci.c b/hw/sh_pci.c index 74d748bfe7..4277b01c9f 100644 --- a/hw/sh_pci.c +++ b/hw/sh_pci.c @@ -34,7 +34,7 @@ typedef struct { uint32_t iobr; } SHPCIC; -static void sh_pci_reg_write (void *p, a_target_phys_addr addr, uint32_t val) +static void sh_pci_reg_write (void *p, target_phys_addr_t addr, uint32_t val) { SHPCIC *pcic = p; switch(addr) { @@ -56,7 +56,7 @@ static void sh_pci_reg_write (void *p, a_target_phys_addr addr, uint32_t val) } } -static uint32_t sh_pci_reg_read (void *p, a_target_phys_addr addr) +static uint32_t sh_pci_reg_read (void *p, target_phys_addr_t addr) { SHPCIC *pcic = p; switch(addr) { @@ -70,79 +70,79 @@ static uint32_t sh_pci_reg_read (void *p, a_target_phys_addr addr) return 0; } -static void sh_pci_data_write (SHPCIC *pcic, a_target_phys_addr addr, +static void sh_pci_data_write (SHPCIC *pcic, target_phys_addr_t addr, uint32_t val, int size) { pci_data_write(pcic->bus, addr + pcic->mbr, val, size); } -static uint32_t sh_pci_mem_read (SHPCIC *pcic, a_target_phys_addr addr, +static uint32_t sh_pci_mem_read (SHPCIC *pcic, target_phys_addr_t addr, int size) { return pci_data_read(pcic->bus, addr + pcic->mbr, size); } -static void sh_pci_writeb (void *p, a_target_phys_addr addr, uint32_t val) +static void sh_pci_writeb (void *p, target_phys_addr_t addr, uint32_t val) { sh_pci_data_write(p, addr, val, 1); } -static void sh_pci_writew (void *p, a_target_phys_addr addr, uint32_t val) +static void sh_pci_writew (void *p, target_phys_addr_t addr, uint32_t val) { sh_pci_data_write(p, addr, val, 2); } -static void sh_pci_writel (void *p, a_target_phys_addr addr, uint32_t val) +static void sh_pci_writel (void *p, target_phys_addr_t addr, uint32_t val) { sh_pci_data_write(p, addr, val, 4); } -static uint32_t sh_pci_readb (void *p, a_target_phys_addr addr) +static uint32_t sh_pci_readb (void *p, target_phys_addr_t addr) { return sh_pci_mem_read(p, addr, 1); } -static uint32_t sh_pci_readw (void *p, a_target_phys_addr addr) +static uint32_t sh_pci_readw (void *p, target_phys_addr_t addr) { return sh_pci_mem_read(p, addr, 2); } -static uint32_t sh_pci_readl (void *p, a_target_phys_addr addr) +static uint32_t sh_pci_readl (void *p, target_phys_addr_t addr) { return sh_pci_mem_read(p, addr, 4); } -static int sh_pci_addr2port(SHPCIC *pcic, a_target_phys_addr addr) +static int sh_pci_addr2port(SHPCIC *pcic, target_phys_addr_t addr) { return addr + pcic->iobr; } -static void sh_pci_outb (void *p, a_target_phys_addr addr, uint32_t val) +static void sh_pci_outb (void *p, target_phys_addr_t addr, uint32_t val) { cpu_outb(sh_pci_addr2port(p, addr), val); } -static void sh_pci_outw (void *p, a_target_phys_addr addr, uint32_t val) +static void sh_pci_outw (void *p, target_phys_addr_t addr, uint32_t val) { cpu_outw(sh_pci_addr2port(p, addr), val); } -static void sh_pci_outl (void *p, a_target_phys_addr addr, uint32_t val) +static void sh_pci_outl (void *p, target_phys_addr_t addr, uint32_t val) { cpu_outl(sh_pci_addr2port(p, addr), val); } -static uint32_t sh_pci_inb (void *p, a_target_phys_addr addr) +static uint32_t sh_pci_inb (void *p, target_phys_addr_t addr) { return cpu_inb(sh_pci_addr2port(p, addr)); } -static uint32_t sh_pci_inw (void *p, a_target_phys_addr addr) +static uint32_t sh_pci_inw (void *p, target_phys_addr_t addr) { return cpu_inw(sh_pci_addr2port(p, addr)); } -static uint32_t sh_pci_inl (void *p, a_target_phys_addr addr) +static uint32_t sh_pci_inl (void *p, target_phys_addr_t addr) { return cpu_inl(sh_pci_addr2port(p, addr)); } |