diff options
author | Avi Kivity <avi@redhat.com> | 2011-11-23 14:58:10 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-11-28 15:38:40 +0200 |
commit | a56e423c7c39af0fa1515d575fddfda032a02916 (patch) | |
tree | 96b3d3650fd801ff43246360d606c964327c4507 /hw/omap2.c | |
parent | 92c0bba9a95739c92e959fe478cb1acb92fa5446 (diff) |
omap: eliminate l4_register_io_memory
This is a trivial wrapper around cpu_register_io_memory(), adding
no value. Inline it into all callers.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/omap2.c')
-rw-r--r-- | hw/omap2.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/hw/omap2.c b/hw/omap2.c index e2998847f2..8a0fa73191 100644 --- a/hw/omap2.c +++ b/hw/omap2.c @@ -784,8 +784,8 @@ static struct omap_sti_s *omap_sti_init(struct omap_target_agent_s *ta, s->chr = chr ?: qemu_chr_new("null", "null", NULL); - iomemtype = l4_register_io_memory(omap_sti_readfn, - omap_sti_writefn, s); + iomemtype = cpu_register_io_memory(omap_sti_readfn, + omap_sti_writefn, s, DEVICE_NATIVE_ENDIAN); omap_l4_attach(ta, 0, iomemtype); iomemtype = cpu_register_io_memory(omap_sti_fifo_readfn, @@ -1798,8 +1798,8 @@ static struct omap_prcm_s *omap_prcm_init(struct omap_target_agent_s *ta, s->mpu = mpu; omap_prcm_coldreset(s); - iomemtype = l4_register_io_memory(omap_prcm_readfn, - omap_prcm_writefn, s); + iomemtype = cpu_register_io_memory(omap_prcm_readfn, + omap_prcm_writefn, s, DEVICE_NATIVE_ENDIAN); omap_l4_attach(ta, 0, iomemtype); omap_l4_attach(ta, 1, iomemtype); @@ -2168,8 +2168,8 @@ static struct omap_sysctl_s *omap_sysctl_init(struct omap_target_agent_s *ta, s->mpu = mpu; omap_sysctl_reset(s); - iomemtype = l4_register_io_memory(omap_sysctl_readfn, - omap_sysctl_writefn, s); + iomemtype = cpu_register_io_memory(omap_sysctl_readfn, + omap_sysctl_writefn, s, DEVICE_NATIVE_ENDIAN); omap_l4_attach(ta, 0, iomemtype); return s; |