]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
vsprintf: remove redundant and unused %pCn format specifier
authorLuca Ceresoli <luca.ceresoli@bootlin.com>
Tue, 11 Mar 2025 09:21:23 +0000 (10:21 +0100)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Fri, 16 May 2025 10:50:00 +0000 (12:50 +0200)
%pC and %pCn print the same string, and commit 900cca294425 ("lib/vsprintf:
add %pC{,n,r} format specifiers for clocks") introducing them does not
clarify any intended difference. It can be assumed %pC is a default for
%pCn as some other specifiers do, but not all are consistent with this
policy. Moreover there is now no other suffix other than 'n', which makes a
default not really useful.

All users in the kernel were using %pC except for one which has been
converted. So now remove %pCn and all the unnecessary extra code and
documentation.

Acked-by: Stephen Boyd <sboyd@kernel.org>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Tested-by: Petr Mladek <pmladek@suse.com>
Reviewed-by: Yanteng Si <si.yanteng@linux.dev>
Link: https://lore.kernel.org/r/20250311-vsprintf-pcn-v2-2-0af40fc7dee4@bootlin.com
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Documentation/core-api/printk-formats.rst
Documentation/translations/zh_CN/core-api/printk-formats.rst
lib/vsprintf.c

index 4bdc394e86af4f0e59f6f0142b84deafca24cf1a..c787f72957a4022f73051918a47637f32d3215da 100644 (file)
@@ -571,9 +571,8 @@ struct clk
 ::
 
        %pC     pll1
-       %pCn    pll1
 
-For printing struct clk structures. %pC and %pCn print the name of the clock
+For printing struct clk structures. %pC prints the name of the clock
 (Common Clock Framework) or a unique 32-bit ID (legacy clock framework).
 
 Passed by reference.
index bd36d35eba4eb124be43a66227059a30429e4135..96a917ecc93f2a4872784b6d8e3f98bcb9f5f737 100644 (file)
@@ -523,9 +523,8 @@ clk结构体
 ::
 
        %pC     pll1
-       %pCn    pll1
 
-用于打印clk结构。%pC 和 %pCn 打印时钟的名称(通用时钟框架)或唯一的32位
+用于打印clk结构。%pC 打印时钟的名称(通用时钟框架)或唯一的32位
 ID(传统时钟框架)。
 
 通过引用传递。
index 01699852f30cdf88d8004ca6af86800797496135..e40843cb807ea0b2b50b2ae7423ab0b4fc9fe849 100644 (file)
@@ -1981,15 +1981,11 @@ char *clock(char *buf, char *end, struct clk *clk, struct printf_spec spec,
        if (check_pointer(&buf, end, clk, spec))
                return buf;
 
-       switch (fmt[1]) {
-       case 'n':
-       default:
 #ifdef CONFIG_COMMON_CLK
-               return string(buf, end, __clk_get_name(clk), spec);
+       return string(buf, end, __clk_get_name(clk), spec);
 #else
-               return ptr_to_id(buf, end, clk, spec);
+       return ptr_to_id(buf, end, clk, spec);
 #endif
-       }
 }
 
 static
@@ -2391,8 +2387,6 @@ early_param("no_hash_pointers", no_hash_pointers_enable);
  *      T    time64_t
  * - 'C' For a clock, it prints the name (Common Clock Framework) or address
  *       (legacy clock framework) of the clock
- * - 'Cn' For a clock, it prints the name (Common Clock Framework) or address
- *        (legacy clock framework) of the clock
  * - 'G' For flags to be printed as a collection of symbolic strings that would
  *       construct the specific value. Supported flags given by option:
  *       p page flags (see struct page) given as pointer to unsigned long