arch/arm/mach-omap2/id.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
Replace scnprintf("%s", ...) with the faster and more direct strscpy().
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
arch/arm/mach-omap2/id.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c
index 43f5944850e6..cf2bfb447ee2 100644
--- a/arch/arm/mach-omap2/id.c
+++ b/arch/arm/mach-omap2/id.c
@@ -17,6 +17,7 @@
#include <linux/io.h>
#include <linux/random.h>
#include <linux/slab.h>
+#include <linux/string.h>
#ifdef CONFIG_SOC_BUS
#include <linux/sys_soc.h>
@@ -250,7 +251,7 @@ static void __init omap3_cpuinfo(void)
cpu_name = "OMAP3503";
}
- scnprintf(soc_name, sizeof(soc_name), "%s", cpu_name);
+ strscpy(soc_name, cpu_name);
/* Print verbose information */
n += scnprintf(buf, sizeof(buf) - n, "%s %s (", soc_name, soc_rev);
--
Thorsten Blum <thorsten.blum@linux.dev>
GPG: 1D60 735E 8AEF 3BE4 73B6 9D84 7336 78FD 8DFE EAD4
On Tue, 24 Feb 2026 15:45:51 +0100, Thorsten Blum wrote:
> Replace scnprintf("%s", ...) with the faster and more direct strscpy().
>
>
Applied, thanks!
[1/1] ARM: omap2: Replace scnprintf with strscpy in omap3_cpuinfo
commit: 5156a8d92cebb531c320c7cec7e527e40232b922
Best regards,
--
Kevin Hilman <khilman@baylibre.com>
On Tue, 24 Feb 2026 15:45:51 +0100
Thorsten Blum <thorsten.blum@linux.dev> wrote:
> Replace scnprintf("%s", ...) with the faster and more direct strscpy().
>
> Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Reviewed-by: Andreas Kemnade <andreas@kemnade.info>
© 2016 - 2026 Red Hat, Inc.