diff options
author | Yaowei Bai <baiyaowei@cmss.chinamobile.com> | 2015-11-13 22:21:07 -0500 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-11-25 11:24:23 -0500 |
commit | 08ff0d5e63b4f360091dd171b0ede1a3361227a1 (patch) | |
tree | cb61f44938dbf805c217ca1b5499a5f05e46ea91 /include/linux/kvm_para.h | |
parent | 33e941547923283f7f1022f3c35359ea9403d9a4 (diff) |
KVM: kvm_para_has_feature can be boolean
This patch makes kvm_para_has_feature return bool due to this
particular function only using either one or zero as its return
value.
No functional change.
Signed-off-by: Yaowei Bai <baiyaowei@cmss.chinamobile.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/linux/kvm_para.h')
-rw-r--r-- | include/linux/kvm_para.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/linux/kvm_para.h b/include/linux/kvm_para.h index 00a97bb905db..35e568f04b1e 100644 --- a/include/linux/kvm_para.h +++ b/include/linux/kvm_para.h | |||
@@ -4,10 +4,8 @@ | |||
4 | #include <uapi/linux/kvm_para.h> | 4 | #include <uapi/linux/kvm_para.h> |
5 | 5 | ||
6 | 6 | ||
7 | static inline int kvm_para_has_feature(unsigned int feature) | 7 | static inline bool kvm_para_has_feature(unsigned int feature) |
8 | { | 8 | { |
9 | if (kvm_arch_para_features() & (1UL << feature)) | 9 | return !!(kvm_arch_para_features() & (1UL << feature)); |
10 | return 1; | ||
11 | return 0; | ||
12 | } | 10 | } |
13 | #endif /* __LINUX_KVM_PARA_H */ | 11 | #endif /* __LINUX_KVM_PARA_H */ |