summaryrefslogtreecommitdiff
path: root/arch/riscv/kvm/vm.c
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2023-02-08 17:01:05 +0300
committerPaolo Bonzini <pbonzini@redhat.com>2023-03-16 17:18:07 +0300
commitd8708b80fa0e6e21bc0c9e7276ad0bccef73b6e7 (patch)
tree996f7424da1fa03c5ef963f59954ebb2a6d44399 /arch/riscv/kvm/vm.c
parentf15ba52bfabc3bc130053bd73d414d859162de91 (diff)
downloadlinux-d8708b80fa0e6e21bc0c9e7276ad0bccef73b6e7.tar.xz
KVM: Change return type of kvm_arch_vm_ioctl() to "int"
All kvm_arch_vm_ioctl() implementations now only deal with "int" types as return values, so we can change the return type of these functions to use "int" instead of "long". Signed-off-by: Thomas Huth <thuth@redhat.com> Acked-by: Anup Patel <anup@brainfault.org> Message-Id: <20230208140105.655814-7-thuth@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/riscv/kvm/vm.c')
-rw-r--r--arch/riscv/kvm/vm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/riscv/kvm/vm.c b/arch/riscv/kvm/vm.c
index 65a964d7e70d..c13130ab459a 100644
--- a/arch/riscv/kvm/vm.c
+++ b/arch/riscv/kvm/vm.c
@@ -87,8 +87,7 @@ int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
return r;
}
-long kvm_arch_vm_ioctl(struct file *filp,
- unsigned int ioctl, unsigned long arg)
+int kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg)
{
return -EINVAL;
}