]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ALSA: atmel: Replace deprecated strcpy() with strscpy()
authorThorsten Blum <thorsten.blum@linux.dev>
Thu, 22 May 2025 18:01:09 +0000 (20:01 +0200)
committerTakashi Iwai <tiwai@suse.de>
Thu, 22 May 2025 18:35:56 +0000 (20:35 +0200)
strcpy() is deprecated; use strscpy() instead. Use strscpy() to copy the
long name because there's no string to format with sprintf().

No functional changes intended.

Link: https://github.com/KSPP/linux/issues/88
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Link: https://patch.msgid.link/20250522180111.12144-2-thorsten.blum@linux.dev
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/atmel/ac97c.c

index 84e264f335ca9d0840d978631fe2c59e59383911..693d48f08b88be3f86e5cb02e19bb91a31ebb671 100644 (file)
@@ -16,6 +16,7 @@
 #include <linux/module.h>
 #include <linux/platform_device.h>
 #include <linux/mutex.h>
+#include <linux/string.h>
 #include <linux/types.h>
 #include <linux/io.h>
 
@@ -589,7 +590,7 @@ static int atmel_ac97c_pcm_new(struct atmel_ac97c *chip)
 
        pcm->private_data = chip;
        pcm->info_flags = 0;
-       strcpy(pcm->name, chip->card->shortname);
+       strscpy(pcm->name, chip->card->shortname);
        chip->pcm = pcm;
 
        return 0;
@@ -748,9 +749,9 @@ static int atmel_ac97c_probe(struct platform_device *pdev)
 
        spin_lock_init(&chip->lock);
 
-       strcpy(card->driver, "Atmel AC97C");
-       strcpy(card->shortname, "Atmel AC97C");
-       sprintf(card->longname, "Atmel AC97 controller");
+       strscpy(card->driver, "Atmel AC97C");
+       strscpy(card->shortname, "Atmel AC97C");
+       strscpy(card->longname, "Atmel AC97 controller");
 
        chip->card = card;
        chip->pclk = pclk;