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 'printk-for-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk

Pull printk updates from Petr Mladek:

- distinguish different legacy clocks again

- small clean up

* tag 'printk-for-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk:
lib/vsprintf: Reinstate printing of legacy clock IDs
vsprintf: fix data type of variable in string_nocheck()

+2 -2
+2 -2
lib/vsprintf.c
··· 599 599 struct printf_spec spec) 600 600 { 601 601 int len = 0; 602 - size_t lim = spec.precision; 602 + int lim = spec.precision; 603 603 604 604 while (lim--) { 605 605 char c = *s++; ··· 1799 1799 #ifdef CONFIG_COMMON_CLK 1800 1800 return string(buf, end, __clk_get_name(clk), spec); 1801 1801 #else 1802 - return error_string(buf, end, "(%pC?)", spec); 1802 + return ptr_to_id(buf, end, clk, spec); 1803 1803 #endif 1804 1804 } 1805 1805 }