[PATCH] panic: fix typo in vpanic() comment

Jyun-An Chen posted 1 patch 2 days, 17 hours ago
kernel/panic.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] panic: fix typo in vpanic() comment
Posted by Jyun-An Chen 2 days, 17 hours ago
Fix a typo in a comment in vpanic().

Signed-off-by: Jyun-An Chen <jun930436@gmail.com>
---
 kernel/panic.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/panic.c b/kernel/panic.c
index 213725b612aa..3492575a70d8 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -704,7 +704,7 @@ void vpanic(const char *fmt, va_list args)
 	 * buffer.  Try to acquire the lock then release it regardless of the
 	 * result.  The release will also print the buffers out.  Locks debug
 	 * should be disabled to avoid reporting bad unlock balance when
-	 * panic() is not being callled from OOPS.
+	 * panic() is not being called from OOPS.
 	 */
 	debug_locks_off();
 	console_flush_on_panic(CONSOLE_FLUSH_PENDING);
-- 
2.43.0
Re: [PATCH] panic: fix typo in vpanic() comment
Posted by Bradley Morgan 1 day, 10 hours ago
> -	 * panic() is not being callled from OOPS.
> +	 * panic() is not being called from OOPS.

really, Jyun?

Well, it's a comment typo fix, so it's quite trivial to review.

Reviewed-by: Bradley Morgan <include@grrlz.net>

Note: I sometimes see AI helps people to fix this.. if you do decide to do code in the future, then please verify what you submit.

If I'm crazy (I mostly am, heh.) then no worries about it.

Well, still thanks for the patch..
Thanks!