lkml.org 
[lkml]   [2021]   [Nov]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH V1] arm64: kvm-ptp: Fix unreasonable return value judgment
Date
In kvm_arch_ptp_init() func, it calls kvm_arm_hyp_service_available()
which return value is bool type, the return value cannot be less than 0
So there fix it.

Signed-off-by: Xin Hao <xhao@linux.alibaba.com>
---
drivers/ptp/ptp_kvm_arm.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/ptp/ptp_kvm_arm.c b/drivers/ptp/ptp_kvm_arm.c
index b7d28c8dfb84..38b06e87a192 100644
--- a/drivers/ptp/ptp_kvm_arm.c
+++ b/drivers/ptp/ptp_kvm_arm.c
@@ -13,10 +13,7 @@

int kvm_arch_ptp_init(void)
{
- int ret;
-
- ret = kvm_arm_hyp_service_available(ARM_SMCCC_KVM_FUNC_PTP);
- if (ret <= 0)
+ if (!kvm_arm_hyp_service_available(ARM_SMCCC_KVM_FUNC_PTP))
return -EOPNOTSUPP;

return 0;
--
2.31.0
\
 
 \ /
  Last update: 2021-11-19 03:37    [W:0.025 / U:0.404 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site