]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
include: Move snprintf to stdio.h
authorRaymond Mao <raymond.mao@linaro.org>
Thu, 16 May 2024 21:11:52 +0000 (14:11 -0700)
committerTom Rini <trini@konsulko.com>
Wed, 22 May 2024 14:55:29 +0000 (08:55 -0600)
Move snprintf to stdio.h since it is needed by exteranl libraries.

Signed-off-by: Raymond Mao <raymond.mao@linaro.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
14 files changed:
arch/arc/lib/cpu.c
board/Synology/common/legacy.c
board/ti/common/fdt_ops.c
cmd/part.c
common/button_cmd.c
drivers/cpu/mpc83xx_cpu.c
include/stdio.h
include/vsprintf.h
lib/display_options.c
lib/fwu_updates/fwu_mtd.c
lib/hexdump.c
lib/vsprintf.c
test/dm/scmi.c
test/print_ut.c

index 593950449f2e26f7ef462d0296bcf6402625fcd1..269b4dbdd15bf2fe99831097ae60c8592394fb5e 100644 (file)
@@ -7,7 +7,7 @@
 #include <clock_legacy.h>
 #include <init.h>
 #include <malloc.h>
-#include <vsprintf.h>
+#include <stdio.h>
 #include <asm/arcregs.h>
 #include <asm/cache.h>
 #include <asm/global_data.h>
index a0bace7b46c2b37debd1564a83215517d95a864c..2e3aa660eaace9e77c93641ec8570dbe1b6c3447 100644 (file)
@@ -6,6 +6,7 @@
  */
 
 #include <config.h>
+#include <stdio.h>
 #include <vsprintf.h>
 #include <env.h>
 #include <net.h>
index eb917be9e0daf4e018361dfad14388e7e0a8fbbe..8a3300993ed39f0186dd804e6fb810921d199cb3 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 #include <env.h>
-#include <vsprintf.h>
+#include <stdio.h>
 #include "fdt_ops.h"
 
 void ti_set_fdt_env(const char *board_name, struct ti_fdt_map *fdt_map)
index d140a1eddb92e1a4d9ff3ffa0442cb66d99cecd3..db7bc5819c063e3dde3a802ac222c4ba5f5def3a 100644 (file)
@@ -19,6 +19,7 @@
 #include <command.h>
 #include <env.h>
 #include <part.h>
+#include <stdio.h>
 #include <vsprintf.h>
 
 enum cmd_part_info {
index 8642c26735ccb06e31eeb861261b3e8d3cfa93d7..72dac1f9ef6b7068b5050dea5bcfc93ee724d4ad 100644 (file)
@@ -8,7 +8,7 @@
 #include <command.h>
 #include <env.h>
 #include <log.h>
-#include <vsprintf.h>
+#include <stdio.h>
 
 /* Some sane limit "just in case" */
 #define MAX_BTN_CMDS 32
index 9a7b5fd7c423480ca6b812adb6a6830682d42f9f..127d3c3af085b686052cf067bb716e4713b2a698 100644 (file)
@@ -9,7 +9,7 @@
 #include <cpu.h>
 #include <dm.h>
 #include <log.h>
-#include <vsprintf.h>
+#include <stdio.h>
 #include <linux/bitops.h>
 
 #include "mpc83xx_cpu.h"
index 3241e2d493fa2aec9d5ef14facdbc8dae3bfc545..7b999a519ba954df7b448708c8824e4ac23c293b 100644 (file)
@@ -46,6 +46,23 @@ static inline int vprintf(const char *fmt, va_list args)
 }
 #endif
 
+/**
+ * Format a string and place it in a buffer
+ *
+ * @buf: The buffer to place the result into
+ * @size: The size of the buffer, including the trailing null space
+ * @fmt: The format string to use
+ * @...: Arguments for the format string
+ * Return: the number of characters which would be
+ * generated for the given input, excluding the trailing null,
+ * as per ISO C99.  If the return is greater than or equal to
+ * @size, the resulting string is truncated.
+ *
+ * See the vsprintf() documentation for format string extensions over C99.
+ */
+int snprintf(char *buf, size_t size, const char *fmt, ...)
+            __attribute__ ((format (__printf__, 3, 4)));
+
 /*
  * FILE based functions (can only be used AFTER relocation!)
  */
index ed8a060ee173623d1b75323de280c087ded02708..fe951471426d77cf19a86b370b67568bdae7d2b5 100644 (file)
@@ -218,23 +218,6 @@ char *simple_itoa(ulong val);
  */
 char *simple_xtoa(ulong num);
 
-/**
- * Format a string and place it in a buffer
- *
- * @buf: The buffer to place the result into
- * @size: The size of the buffer, including the trailing null space
- * @fmt: The format string to use
- * @...: Arguments for the format string
- * Return: the number of characters which would be
- * generated for the given input, excluding the trailing null,
- * as per ISO C99.  If the return is greater than or equal to
- * @size, the resulting string is truncated.
- *
- * See the vsprintf() documentation for format string extensions over C99.
- */
-int snprintf(char *buf, size_t size, const char *fmt, ...)
-               __attribute__ ((format (__printf__, 3, 4)));
-
 /**
  * Format a string and place it in a buffer
  *
index d6b93553dcb52580153f2335bcdfdf562999c612..d5df53ab15f93b88d114a575c2c777c20168642e 100644 (file)
@@ -12,6 +12,7 @@
 #include <linux/ctype.h>
 #include <linux/kernel.h>
 #include <asm/io.h>
+#include <stdio.h>
 #include <vsprintf.h>
 
 char *display_options_get_banner_priv(bool newlines, const char *build_tag,
index 69cd3d7001f98becedb20378a92475735bb973ab..4a52834b61af1d64637fc1ab1912b0deb2677960 100644 (file)
@@ -11,7 +11,7 @@
 #include <malloc.h>
 #include <mtd.h>
 #include <uuid.h>
-#include <vsprintf.h>
+#include <stdio.h>
 
 #include <dm/ofnode.h>
 
index 33e3e6e5182438b63f105676f3e5fbed3b4ff09d..2bc508ff5048e288f5435515a1a6f1d43aa334e4 100644 (file)
@@ -10,7 +10,7 @@
 
 #include <hexdump.h>
 #include <mapmem.h>
-#include <vsprintf.h>
+#include <stdio.h>
 #include <linux/ctype.h>
 #include <linux/compat.h>
 #include <linux/log2.h>
index 27ea9c907a32cbc936481d19b3dc8a66c994a92e..cfd1f1914edfc91399edd5178c6c1a3a18b625d8 100644 (file)
@@ -19,6 +19,7 @@
 #include <hexdump.h>
 #include <stdarg.h>
 #include <uuid.h>
+#include <stdio.h>
 #include <vsprintf.h>
 #include <linux/ctype.h>
 #include <linux/err.h>
index 69fc900e342961ced985667981f502ac493aadec..c9a03523184e1d6bdf01bf11b11cfd4264b2f2ce 100644 (file)
@@ -18,7 +18,7 @@
 #include <scmi_agent.h>
 #include <scmi_agent-uclass.h>
 #include <scmi_protocols.h>
-#include <vsprintf.h>
+#include <stdio.h>
 #include <asm/scmi_test.h>
 #include <dm/device-internal.h>
 #include <dm/test.h>
index bded2b6ebe5adda45dedb1fc1823679263f6ffe6..53d3354ea69091bab7ab254c5d43e5ad46c5813e 100644 (file)
@@ -9,6 +9,7 @@
 #include <log.h>
 #include <mapmem.h>
 #include <version_string.h>
+#include <stdio.h>
 #include <vsprintf.h>
 #include <test/suites.h>
 #include <test/test.h>