summaryrefslogtreecommitdiff
path: root/include/qemu
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2013-11-05 16:38:36 +0000
committerAnthony Liguori <aliguori@amazon.com>2013-11-05 19:57:47 -0800
commite4ef9f465cf7cbc66b85e9df4eebe13086b46f11 (patch)
treea1b8d5ecc460819e377b2825c714e03aaad022c1 /include/qemu
parent6bd194ab9957361f83fdbfb22d452d97b4af28e2 (diff)
downloadqemu-e4ef9f465cf7cbc66b85e9df4eebe13086b46f11.tar.gz
bswap.h: Remove cpu_to_be64wu()
Replace the legacy cpu_to_be64wu() with stq_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-9-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 b95cc73859..4cbd6e7885 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_be64wu(uint64_t *p, uint64_t v)
-{
- stq_be_p(p, v);
-}
-
static inline void cpu_to_32wu(uint32_t *p, uint32_t v)
{
stl_p(p, v);