ASoC: core: Replace sprintf() with sysfs_emit()
authorTakashi Iwai <tiwai@suse.de>
Mon, 1 Aug 2022 17:01:06 +0000 (19:01 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 15 Aug 2022 00:19:49 +0000 (01:19 +0100)
For sysfs outputs, it's safer to use a new helper, sysfs_emit(),
instead of the raw sprintf() & co.  This patch replaces the sprintf()
usage straightforwardly with a new helper, sysfs_emit().

Signed-off-by: Takashi Iwai <tiwai@suse.de>
Link: https://lore.kernel.org/r/20220801170108.26340-7-tiwai@suse.de
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-core.c

index e824ff1a9fc0961e9ef35f2ff6cd11c0b022c5c8..e020ab49cfb1233fb2b258c2fe728f352062c408 100644 (file)
@@ -72,7 +72,7 @@ static ssize_t pmdown_time_show(struct device *dev,
 {
        struct snd_soc_pcm_runtime *rtd = dev_get_drvdata(dev);
 
-       return sprintf(buf, "%ld\n", rtd->pmdown_time);
+       return sysfs_emit(buf, "%ld\n", rtd->pmdown_time);
 }
 
 static ssize_t pmdown_time_store(struct device *dev,