diff options
author | Avi Kivity <avi@redhat.com> | 2011-11-28 15:37:30 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-11-28 15:38:47 +0200 |
commit | a6dbd3c83622fc0156e17c0d2fab54fe79afd07f (patch) | |
tree | 8d6370b23b170893974e07f254ad7dec361229c2 /hw | |
parent | 748781390916caa6a8258ed89524a82e508efadc (diff) | |
download | hqemu-a6dbd3c83622fc0156e17c0d2fab54fe79afd07f.zip hqemu-a6dbd3c83622fc0156e17c0d2fab54fe79afd07f.tar.gz |
omap_l4: remove omap_l4_attach()
No longer used.
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/omap.h | 2 | ||||
-rw-r--r-- | hw/omap_l4.c | 20 |
2 files changed, 0 insertions, 22 deletions
@@ -94,8 +94,6 @@ struct omap_target_agent_s *omap_l4ta_get( const struct omap_l4_region_s *regions, const struct omap_l4_agent_info_s *agents, int cs); -target_phys_addr_t omap_l4_attach(struct omap_target_agent_s *ta, int region, - int iotype); target_phys_addr_t omap_l4_attach_region(struct omap_target_agent_s *ta, int region, MemoryRegion *mr); target_phys_addr_t omap_l4_region_base(struct omap_target_agent_s *ta, diff --git a/hw/omap_l4.c b/hw/omap_l4.c index cf4b971..78f02d9 100644 --- a/hw/omap_l4.c +++ b/hw/omap_l4.c @@ -143,26 +143,6 @@ struct omap_target_agent_s *omap_l4ta_get(struct omap_l4_s *bus, return ta; } -target_phys_addr_t omap_l4_attach(struct omap_target_agent_s *ta, int region, - int iotype) -{ - target_phys_addr_t base; - ssize_t size; - - if (region < 0 || region >= ta->regions) { - fprintf(stderr, "%s: bad io region (%i)\n", __FUNCTION__, region); - exit(-1); - } - - base = ta->bus->base + ta->start[region].offset; - size = ta->start[region].size; - if (iotype) { - cpu_register_physical_memory(base, size, iotype); - } - - return base; -} - target_phys_addr_t omap_l4_attach_region(struct omap_target_agent_s *ta, int region, MemoryRegion *mr) { |