diff options
author | Avi Kivity <avi@redhat.com> | 2011-11-28 15:40:49 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-11-28 15:40:49 +0200 |
commit | f44336c594c7e7887ee43ece3b53ba68b827fd1d (patch) | |
tree | df8f14f40066fd4a46f12cd2e1cb8b0730ce3a5f /hw/omap_l4.c | |
parent | a6dbd3c83622fc0156e17c0d2fab54fe79afd07f (diff) |
omap_l4: rename omap_l4_attach_region() to omap_l4_attach()
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/omap_l4.c')
-rw-r--r-- | hw/omap_l4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/omap_l4.c b/hw/omap_l4.c index 78f02d993e..dbad7f67a8 100644 --- a/hw/omap_l4.c +++ b/hw/omap_l4.c @@ -138,12 +138,12 @@ struct omap_target_agent_s *omap_l4ta_get(struct omap_l4_s *bus, memory_region_init_io(&ta->iomem, &omap_l4ta_ops, ta, "omap.l4ta", omap_l4_region_size(ta, info->ta_region)); - omap_l4_attach_region(ta, info->ta_region, &ta->iomem); + omap_l4_attach(ta, info->ta_region, &ta->iomem); return ta; } -target_phys_addr_t omap_l4_attach_region(struct omap_target_agent_s *ta, +target_phys_addr_t omap_l4_attach(struct omap_target_agent_s *ta, int region, MemoryRegion *mr) { target_phys_addr_t base; |