lkml.org 
[lkml]   [2023]   [Nov]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 1/1] ntp: Refine ntp_get_next_leap implementation
Date
From: Adrian Huang <ahuang12@lenovo.com>

It is unnecessary to use the local variable 'ret' in the ntp_get_next_leap
implementation function - just return KTIME_MAX directly and get rid of
the local variable altogether.

Signed-off-by: Adrian Huang <ahuang12@lenovo.com>
---
kernel/time/ntp.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/kernel/time/ntp.c b/kernel/time/ntp.c
index 406dccb79c2b..af1a7e0c0f9d 100644
--- a/kernel/time/ntp.c
+++ b/kernel/time/ntp.c
@@ -379,12 +379,10 @@ u64 ntp_tick_length(void)
*/
ktime_t ntp_get_next_leap(void)
{
- ktime_t ret;
-
if ((time_state == TIME_INS) && (time_status & STA_INS))
return ktime_set(ntp_next_leap_sec, 0);
- ret = KTIME_MAX;
- return ret;
+
+ return KTIME_MAX;
}

/*
--
2.25.1
\
 
 \ /
  Last update: 2023-11-23 05:10    [W:0.020 / U:0.364 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site