]> git.karo-electronics.de Git - linux-beck.git/commit
regmap: debugfs: use snprintf return value in regmap_reg_ranges_read_file()
authorRasmus Villemoes <linux@rasmusvillemoes.dk>
Wed, 30 Sep 2015 18:30:25 +0000 (20:30 +0200)
committerMark Brown <broonie@kernel.org>
Wed, 30 Sep 2015 19:31:15 +0000 (20:31 +0100)
commite34dc490713f8d9dfbbb5bb56d966d90a9344131
tree48a68316a43804e68f07f45eed043199e01e961f
parent9ae3109d1d9ff367e0d0efa7073cc078edb9a372
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>
drivers/base/regmap/regmap-debugfs.c