From: Josh Law Date: Fri, 6 Mar 2026 16:12:50 +0000 (+0000) Subject: lib/uuid: fix typo "reversion" to "revision" in comment X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e54f7f67e9b361b3213b5b75e0cf7167c1105fc7;p=thirdparty%2Flinux.git lib/uuid: fix typo "reversion" to "revision" in comment Fix a typo in __uuid_gen_common() where "reversion" (meaning to revert) was used instead of "revision" when describing the UUID variant field. Link: https://lkml.kernel.org/r/20260306161250.2811500-1-objecting@objecting.org Signed-off-by: Josh Law Reviewed-by: Andy Shevchenko Signed-off-by: Andrew Morton --- diff --git a/lib/uuid.c b/lib/uuid.c index e8543c668dc71..128a51f1879b6 100644 --- a/lib/uuid.c +++ b/lib/uuid.c @@ -54,7 +54,7 @@ EXPORT_SYMBOL(generate_random_guid); static void __uuid_gen_common(__u8 b[16]) { get_random_bytes(b, 16); - /* reversion 0b10 */ + /* revision 0b10 */ b[8] = (b[8] & 0x3F) | 0x80; }