From: Thorsten Blum Date: Mon, 30 Jun 2025 10:57:22 +0000 (+0200) Subject: ALSA: hrtimer: Replace deprecated strcpy() with strscpy() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24ffcf7f27cf75389ca550a18f9e45a8dad27bd2;p=thirdparty%2Flinux.git ALSA: hrtimer: Replace deprecated strcpy() with strscpy() strcpy() is deprecated; use strscpy() instead. No functional changes intended. Link: https://github.com/KSPP/linux/issues/88 Signed-off-by: Thorsten Blum Link: https://patch.msgid.link/20250630105723.1703-2-thorsten.blum@linux.dev Signed-off-by: Takashi Iwai --- diff --git a/sound/core/hrtimer.c b/sound/core/hrtimer.c index e9c60dce59fbf..c364bd126ac8b 100644 --- a/sound/core/hrtimer.c +++ b/sound/core/hrtimer.c @@ -6,6 +6,7 @@ #include #include +#include #include #include #include @@ -138,7 +139,7 @@ static int __init snd_hrtimer_init(void) return err; timer->module = THIS_MODULE; - strcpy(timer->name, "HR timer"); + strscpy(timer->name, "HR timer"); timer->hw = hrtimer_hw; timer->hw.resolution = resolution; timer->hw.ticks = NANO_SEC / resolution;