time: Fix spelling mistake in comment
authorMukesh Ojha <mojha@codeaurora.org>
Tue, 15 Oct 2019 07:33:39 +0000 (13:03 +0530)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 12 Nov 2019 10:30:46 +0000 (11:30 +0100)
witin => within

Signed-off-by: Mukesh Ojha <mojha@codeaurora.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/1571124819-9639-1-git-send-email-mojha@codeaurora.org
kernel/time/time.c

index 45a3589..ea6e7e4 100644 (file)
@@ -179,7 +179,7 @@ int do_sys_settimeofday64(const struct timespec64 *tv, const struct timezone *tz
                return error;
 
        if (tz) {
-               /* Verify we're witin the +-15 hrs range */
+               /* Verify we're within the +-15 hrs range */
                if (tz->tz_minuteswest > 15*60 || tz->tz_minuteswest < -15*60)
                        return -EINVAL;