From: Andy Shevchenko Date: Mon, 3 Jul 2023 14:58:39 +0000 (+0300) Subject: docs: printk-formats: Treat char as always unsigned X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=243e212ff82f6aaabc2793049571a199067738d3;p=linux.git docs: printk-formats: Treat char as always unsigned The Linux kernel switched to have char be equivalent to usigned char. Reflect this in the printk specifiers. Fixes: 3bc753c06dd0 ("kbuild: treat char as always unsigned") Signed-off-by: Andy Shevchenko Reviewed-by: Petr Mladek Signed-off-by: Petr Mladek Link: https://lore.kernel.org/r/20230703145839.14248-2-andriy.shevchenko@linux.intel.com --- diff --git a/Documentation/core-api/printk-formats.rst b/Documentation/core-api/printk-formats.rst index 956c87b3ba8bc..0eed8a2dcae93 100644 --- a/Documentation/core-api/printk-formats.rst +++ b/Documentation/core-api/printk-formats.rst @@ -15,8 +15,9 @@ Integer types If variable is of Type, use printk format specifier: ------------------------------------------------------------ - char %d or %hhx + signed char %d or %hhx unsigned char %u or %x + char %u or %x short int %d or %hx unsigned short int %u or %x int %d or %x