[PATCH] timex: Clean up errors in timex.h

From: chenguohua
Date: Wed Sep 27 2023 - 02:22:15 EST


Fix the following errors reported by checkpatch:

ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: GuoHua Cheng <chenguohua@xxxxxxx>
---
include/linux/timex.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/timex.h b/include/linux/timex.h
index 3871b06bd302..3f6592aa675b 100644
--- a/include/linux/timex.h
+++ b/include/linux/timex.h
@@ -160,7 +160,7 @@ extern unsigned long tick_nsec; /* SHIFTED_HZ period (nsec) */
#define NTP_INTERVAL_LENGTH (NSEC_PER_SEC/NTP_INTERVAL_FREQ)

extern int do_adjtimex(struct __kernel_timex *);
-extern int do_clock_adjtime(const clockid_t which_clock, struct __kernel_timex * ktx);
+extern int do_clock_adjtime(const clockid_t which_clock, struct __kernel_timex *ktx);

extern void hardpps(const struct timespec64 *, const struct timespec64 *);

--
2.17.1