summaryrefslogtreecommitdiff
path: root/include/qemu
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2013-11-05 16:38:34 +0000
committerAnthony Liguori <aliguori@amazon.com>2013-11-05 19:57:47 -0800
commitd8ee2591e495d5feb0e0250866222dedc805c8d8 (patch)
treec70c5e23268ce37fa2543f8273eeeb760e3486d2 /include/qemu
parent09fa8439730c707b34af6ab055fc353f6cadc57d (diff)
downloadqemu-d8ee2591e495d5feb0e0250866222dedc805c8d8.tar.gz
bswap.h: Remove cpu_to_be16wu()
Replace the legacy cpu_to_be16wu() with stw_be_p(). Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <rth@twiddle.net> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Message-id: 1383669517-25598-7-git-send-email-peter.maydell@linaro.org Signed-off-by: Anthony Liguori <aliguori@amazon.com>
Diffstat (limited to 'include/qemu')
-rw-r--r--include/qemu/bswap.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/qemu/bswap.h b/include/qemu/bswap.h
index 9524931f8a..3bb6b71cff 100644
--- a/include/qemu/bswap.h
+++ b/include/qemu/bswap.h
@@ -412,11 +412,6 @@ static inline void stfq_be_p(void *ptr, float64 v)
/* Legacy unaligned versions. Note that we never had a complete set. */
-static inline void cpu_to_be16wu(uint16_t *p, uint16_t v)
-{
- stw_be_p(p, v);
-}
-
static inline void cpu_to_be32wu(uint32_t *p, uint32_t v)
{
stl_be_p(p, v);