diff options
author | Takashi Iwai <tiwai@suse.de> | 2022-08-16 15:07:55 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2022-08-16 15:07:55 +0200 |
commit | 25a3b959577953b3a441bb88e66ca8eaee46cc61 (patch) | |
tree | 224096ecd77bb03522c1faed755b397b7c2ebd3a /sound/soc/sof/debug.c | |
parent | 461122b999bda2ebef2086a35d8990f9ccac5ab8 (diff) | |
parent | b4b5f29a076e52181f63e45a2ad1bc88593072e3 (diff) |
Merge tag 'asoc-fix-v6.0-rc1' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v6.0
A relatively large batch of fixes that came in since my pull request,
none of them too major and mostly device specific apart from a series of
security/robustness improvements from Takashi.
Diffstat (limited to 'sound/soc/sof/debug.c')
-rw-r--r-- | sound/soc/sof/debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/sof/debug.c b/sound/soc/sof/debug.c index c5d797e97c02..d9a3ce7b69e1 100644 --- a/sound/soc/sof/debug.c +++ b/sound/soc/sof/debug.c @@ -252,9 +252,9 @@ static int memory_info_update(struct snd_sof_dev *sdev, char *buf, size_t buff_s } for (i = 0, len = 0; i < reply->num_elems; i++) { - ret = snprintf(buf + len, buff_size - len, "zone %d.%d used %#8x free %#8x\n", - reply->elems[i].zone, reply->elems[i].id, - reply->elems[i].used, reply->elems[i].free); + ret = scnprintf(buf + len, buff_size - len, "zone %d.%d used %#8x free %#8x\n", + reply->elems[i].zone, reply->elems[i].id, + reply->elems[i].used, reply->elems[i].free); if (ret < 0) goto error; len += ret; |