diff options
author | Jisheng Zhang <jszhang@marvell.com> | 2015-11-12 19:59:14 +0800 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2015-12-14 11:29:59 +0000 |
commit | 8cdb654abe5730654d0385382c4e877a011bb8c8 (patch) | |
tree | 263c6b7c3f0dfa9df725111d3794ece80a500147 /virt | |
parent | 9f9499ae8e6415cefc4fe0a96ad0e27864353c89 (diff) | |
download | linux-stable-8cdb654abe5730654d0385382c4e877a011bb8c8.tar.gz linux-stable-8cdb654abe5730654d0385382c4e877a011bb8c8.tar.bz2 linux-stable-8cdb654abe5730654d0385382c4e877a011bb8c8.zip |
KVM: arm/arm64: vgic: make vgic_io_ops static
vgic_io_ops is only referenced within vgic.c, so it can be declared
static.
Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
Diffstat (limited to 'virt')
-rw-r--r-- | virt/kvm/arm/vgic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/virt/kvm/arm/vgic.c b/virt/kvm/arm/vgic.c index 65461f821a75..0c739a7f40cd 100644 --- a/virt/kvm/arm/vgic.c +++ b/virt/kvm/arm/vgic.c @@ -878,7 +878,7 @@ static int vgic_handle_mmio_write(struct kvm_vcpu *vcpu, true); } -struct kvm_io_device_ops vgic_io_ops = { +static struct kvm_io_device_ops vgic_io_ops = { .read = vgic_handle_mmio_read, .write = vgic_handle_mmio_write, }; |