diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2018-12-10 17:58:54 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-01-11 15:46:54 +0100 |
commit | 10ca76b4d2075154b3d3e0ea3ab3dd17da71b11c (patch) | |
tree | 8663a678d798605fdab487f5cd73efc18a5fac0d /hw | |
parent | 70537ed51599de19e7cbafd8fa21d9619b0515ff (diff) | |
download | qemu-10ca76b4d2075154b3d3e0ea3ab3dd17da71b11c.zip qemu-10ca76b4d2075154b3d3e0ea3ab3dd17da71b11c.tar.gz qemu-10ca76b4d2075154b3d3e0ea3ab3dd17da71b11c.tar.bz2 |
vfio: make vfio_address_spaces static
It is not used outside hw/vfio/common.c, so it does not need to
be extern.
Acked-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/vfio/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vfio/common.c b/hw/vfio/common.c index 7c185e5a..7aa804e 100644 --- a/hw/vfio/common.c +++ b/hw/vfio/common.c @@ -39,7 +39,7 @@ struct vfio_group_head vfio_group_list = QLIST_HEAD_INITIALIZER(vfio_group_list); -struct vfio_as_head vfio_address_spaces = +static QLIST_HEAD(, VFIOAddressSpace) vfio_address_spaces = QLIST_HEAD_INITIALIZER(vfio_address_spaces); #ifdef CONFIG_KVM |