commit | e34dc490713f8d9dfbbb5bb56d966d90a9344131 | [log] [tgz] |
---|---|---|
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | Wed Sep 30 20:30:25 2015 +0200 |
committer | Mark Brown <broonie@kernel.org> | Wed Sep 30 20:31:15 2015 +0100 |
tree | 48a68316a43804e68f07f45eed043199e01e961f | |
parent | 9ae3109d1d9ff367e0d0efa7073cc078edb9a372 [diff] |
regmap: debugfs: use snprintf return value in regmap_reg_ranges_read_file() Calling strlen() no less than three times on entry is silly. Since we're formatting into a buffer with plenty of room, there's no chance of truncation, so snprintf() has actually returned the value we want, meaning we don't even have to call strlen once. Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Signed-off-by: Mark Brown <broonie@kernel.org>