Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'unicode-next-6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/krisman/unicode

Pull unicode update from Gabriel Krisman Bertazi:
"Two small fixes to silence the compiler and static analyzers tools
from Ben Dooks and Jeff Johnson"

* tag 'unicode-next-6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/krisman/unicode:
unicode: add MODULE_DESCRIPTION() macros
unicode: make utf8 test count static

+5 -2
+1
fs/unicode/mkutf8data.c
··· 3352 3352 fprintf(file, "};\n"); 3353 3353 fprintf(file, "EXPORT_SYMBOL_GPL(utf8_data_table);"); 3354 3354 fprintf(file, "\n"); 3355 + fprintf(file, "MODULE_DESCRIPTION(\"UTF8 data table\");\n"); 3355 3356 fprintf(file, "MODULE_LICENSE(\"GPL v2\");\n"); 3356 3357 fclose(file); 3357 3358 }
+3 -2
fs/unicode/utf8-selftest.c
··· 14 14 15 15 #include "utf8n.h" 16 16 17 - unsigned int failed_tests; 18 - unsigned int total_tests; 17 + static unsigned int failed_tests; 18 + static unsigned int total_tests; 19 19 20 20 /* Tests will be based on this version. */ 21 21 #define UTF8_LATEST UNICODE_AGE(12, 1, 0) ··· 307 307 module_exit(exit_test_ucd); 308 308 309 309 MODULE_AUTHOR("Gabriel Krisman Bertazi <krisman@collabora.co.uk>"); 310 + MODULE_DESCRIPTION("Kernel module for testing utf-8 support"); 310 311 MODULE_LICENSE("GPL");
+1
fs/unicode/utf8data.c_shipped
··· 4120 4120 .utf8data = utf8data, 4121 4121 }; 4122 4122 EXPORT_SYMBOL_GPL(utf8_data_table); 4123 + MODULE_DESCRIPTION("UTF8 data table"); 4123 4124 MODULE_LICENSE("GPL v2");