diff options
| author | Peter Maydell | 2013-11-05 17:38:35 +0100 |
|---|---|---|
| committer | Anthony Liguori | 2013-11-06 04:57:47 +0100 |
| commit | 6bd194ab9957361f83fdbfb22d452d97b4af28e2 (patch) | |
| tree | 195880149fddce3aec061fa94f4dc0499f25413c /include | |
| parent | bswap.h: Remove cpu_to_be16wu() (diff) | |
| download | qemu-6bd194ab9957361f83fdbfb22d452d97b4af28e2.tar.gz qemu-6bd194ab9957361f83fdbfb22d452d97b4af28e2.tar.xz qemu-6bd194ab9957361f83fdbfb22d452d97b4af28e2.zip | |
bswap.h: Remove cpu_to_be32wu()
Replace the legacy cpu_to_be32wu() with stl_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-8-git-send-email-peter.maydell@linaro.org
Signed-off-by: Anthony Liguori <aliguori@amazon.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/qemu/bswap.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/qemu/bswap.h b/include/qemu/bswap.h index 3bb6b71cff..b95cc73859 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_be32wu(uint32_t *p, uint32_t v) -{ - stl_be_p(p, v); -} - static inline void cpu_to_be64wu(uint64_t *p, uint64_t v) { stq_be_p(p, v); |
