ALSA: Convert strlcpy to strscpy when return value is unused
strlcpy is deprecated. see: Documentation/process/deprecated.rst Change the calls that do not use the strlcpy return value to the preferred strscpy. Done with cocci script: @@ expression e1, e2, e3; @@ - strlcpy( + strscpy( e1, e2, e3); This cocci script leaves the instances where the return value is used unchanged. After this patch, sound/ has 3 uses of strlcpy() that need to be manually inspected for conversion and changed one day. $ git grep -w strlcpy sound/ sound/usb/card.c: len = strlcpy(card->longname, s, sizeof(card->longname)); sound/usb/mixer.c: return strlcpy(buf, p->name, buflen); sound/usb/mixer.c: return strlcpy(buf, p->names[index], buflen); Miscellenea: o Remove trailing whitespace in conversion of sound/core/hwdep.c Link: https://lore.kernel.org/lkml/CAHk-=wgfRnXz0W3D37d01q3JFkr_i_uTL=V6A6G1oUZcprmknw@mail.gmail.com/ Signed-off-by:Joe Perches <joe@perches.com> Acked-by:
Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/22b393d1790bb268769d0bab7bacf0866dcb0c14.camel@perches.com Signed-off-by:
Takashi Iwai <tiwai@suse.de>
Showing
- sound/aoa/codecs/onyx.c 1 addition, 1 deletionsound/aoa/codecs/onyx.c
- sound/aoa/codecs/tas.c 1 addition, 1 deletionsound/aoa/codecs/tas.c
- sound/aoa/codecs/toonie.c 1 addition, 1 deletionsound/aoa/codecs/toonie.c
- sound/aoa/core/alsa.c 4 additions, 4 deletionssound/aoa/core/alsa.c
- sound/aoa/fabrics/layout.c 3 additions, 3 deletionssound/aoa/fabrics/layout.c
- sound/aoa/soundbus/sysfs.c 1 addition, 1 deletionsound/aoa/soundbus/sysfs.c
- sound/arm/aaci.c 3 additions, 3 deletionssound/arm/aaci.c
- sound/arm/pxa2xx-ac97.c 1 addition, 1 deletionsound/arm/pxa2xx-ac97.c
- sound/core/compress_offload.c 1 addition, 1 deletionsound/core/compress_offload.c
- sound/core/control.c 8 additions, 8 deletionssound/core/control.c
- sound/core/ctljack.c 1 addition, 1 deletionsound/core/ctljack.c
- sound/core/hwdep.c 3 additions, 3 deletionssound/core/hwdep.c
- sound/core/init.c 2 additions, 2 deletionssound/core/init.c
- sound/core/oss/mixer_oss.c 6 additions, 6 deletionssound/core/oss/mixer_oss.c
- sound/core/pcm.c 1 addition, 1 deletionsound/core/pcm.c
- sound/core/pcm_native.c 3 additions, 3 deletionssound/core/pcm_native.c
- sound/core/rawmidi.c 1 addition, 1 deletionsound/core/rawmidi.c
- sound/core/seq/oss/seq_oss_midi.c 2 additions, 2 deletionssound/core/seq/oss/seq_oss_midi.c
- sound/core/seq/oss/seq_oss_synth.c 3 additions, 3 deletionssound/core/seq/oss/seq_oss_synth.c
- sound/core/seq/seq_clientmgr.c 1 addition, 1 deletionsound/core/seq/seq_clientmgr.c
Loading
Please register or sign in to comment