Skip to content
Snippets Groups Projects
Commit 20991cdb authored by Rasmus Villemoes's avatar Rasmus Villemoes Committed by Mark Brown
Browse files

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: default avatarRasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent e34dc490
No related branches found
No related tags found
No related merge requests found
...@@ -370,8 +370,7 @@ static ssize_t regmap_reg_ranges_read_file(struct file *file, ...@@ -370,8 +370,7 @@ static ssize_t regmap_reg_ranges_read_file(struct file *file,
if (p >= *ppos) { if (p >= *ppos) {
if (buf_pos + 1 + entry_len > count) if (buf_pos + 1 + entry_len > count)
break; break;
snprintf(buf + buf_pos, count - buf_pos, memcpy(buf + buf_pos, entry, entry_len);
"%s", entry);
buf_pos += entry_len; buf_pos += entry_len;
buf[buf_pos] = '\n'; buf[buf_pos] = '\n';
buf_pos++; buf_pos++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment