mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
regmap: debugfs: use memcpy instead of snprintf
Since we know the length of entry and that there's room enough in the output buffer, using memcpy instead of snprintf is simpler and cheaper. Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
e34dc49071
commit
20991cdb26
@ -370,8 +370,7 @@ static ssize_t regmap_reg_ranges_read_file(struct file *file,
|
||||
if (p >= *ppos) {
|
||||
if (buf_pos + 1 + entry_len > count)
|
||||
break;
|
||||
snprintf(buf + buf_pos, count - buf_pos,
|
||||
"%s", entry);
|
||||
memcpy(buf + buf_pos, entry, entry_len);
|
||||
buf_pos += entry_len;
|
||||
buf[buf_pos] = '\n';
|
||||
buf_pos++;
|
||||
|
Loading…
Reference in New Issue
Block a user