[PATCH] kernel/time.c: Mundane typo fixes

From: Bhaskar Chowdhury
Date: Thu Mar 25 2021 - 04:23:49 EST


s/boundries/boundaries/
s/compat/compact/

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@xxxxxxxxx>
---
kernel/time/time.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/time/time.c b/kernel/time/time.c
index 3985b2b32d08..ea6936302d84 100644
--- a/kernel/time/time.c
+++ b/kernel/time/time.c
@@ -571,7 +571,7 @@ EXPORT_SYMBOL(__usecs_to_jiffies);
/*
* The TICK_NSEC - 1 rounds up the value to the next resolution. Note
* that a remainder subtract here would not do the right thing as the
- * resolution values don't fall on second boundries. I.e. the line:
+ * resolution values don't fall on second boundaries. I.e. the line:
* nsec -= nsec % TICK_NSEC; is NOT a correct resolution rounding.
* Note that due to the small error in the multiplier here, this
* rounding is incorrect for sufficiently large values of tv_nsec, but
@@ -790,7 +790,7 @@ int get_timespec64(struct timespec64 *ts,

ts->tv_sec = kts.tv_sec;

- /* Zero out the padding in compat mode */
+ /* Zero out the padding in compact mode */
if (in_compat_syscall())
kts.tv_nsec &= 0xFFFFFFFFUL;

--
2.30.1