diff options
author | Thomas Huth <thuth@redhat.com> | 2018-10-05 14:46:02 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2018-10-17 08:41:43 +0200 |
commit | c95ac10340ec42d2e8828b5ddab1c9d0c15dbc0e (patch) | |
tree | ff4d4edefe4745066ae2ec66a689f34464f751cd /hw/virtio | |
parent | 8c827c53c50c4e6212e41c0582ae0f20d5724aa8 (diff) | |
download | qemu-c95ac10340ec42d2e8828b5ddab1c9d0c15dbc0e.zip qemu-c95ac10340ec42d2e8828b5ddab1c9d0c15dbc0e.tar.gz qemu-c95ac10340ec42d2e8828b5ddab1c9d0c15dbc0e.tar.bz2 |
cpu: Provide a proper prototype for target_words_bigendian() in a header
We've got three places already that provide a prototype for this
function in a .c file - that's ugly. Let's provide a proper prototype
in a header instead, with a proper description why this function should
not be used in most cases.
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'hw/virtio')
-rw-r--r-- | hw/virtio/virtio.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c index 94f5c8e..4e61944 100644 --- a/hw/virtio/virtio.c +++ b/hw/virtio/virtio.c @@ -1169,7 +1169,6 @@ int virtio_set_status(VirtIODevice *vdev, uint8_t val) return 0; } -bool target_words_bigendian(void); static enum virtio_device_endian virtio_default_endian(void) { if (target_words_bigendian()) { |