diff options
author | Avi Kivity | 2011-11-28 14:40:49 +0100 |
---|---|---|
committer | Avi Kivity | 2011-11-28 14:40:49 +0100 |
commit | f44336c594c7e7887ee43ece3b53ba68b827fd1d (patch) | |
tree | df8f14f40066fd4a46f12cd2e1cb8b0730ce3a5f /hw/omap_tap.c | |
parent | omap_l4: remove omap_l4_attach() (diff) | |
download | qemu-f44336c594c7e7887ee43ece3b53ba68b827fd1d.tar.gz qemu-f44336c594c7e7887ee43ece3b53ba68b827fd1d.tar.xz qemu-f44336c594c7e7887ee43ece3b53ba68b827fd1d.zip |
omap_l4: rename omap_l4_attach_region() to omap_l4_attach()
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/omap_tap.c')
-rw-r--r-- | hw/omap_tap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/omap_tap.c b/hw/omap_tap.c index 1b4820cebe..0277c73652 100644 --- a/hw/omap_tap.c +++ b/hw/omap_tap.c @@ -112,5 +112,5 @@ void omap_tap_init(struct omap_target_agent_s *ta, { memory_region_init_io(&mpu->tap_iomem, &omap_tap_ops, mpu, "omap.tap", omap_l4_region_size(ta, 0)); - omap_l4_attach_region(ta, 0, &mpu->tap_iomem); + omap_l4_attach(ta, 0, &mpu->tap_iomem); } |