]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
regmap: debugfs: Fix reading in register field units
authorDimitris Papastamos <dp@opensource.wolfsonmicro.com>
Thu, 7 Feb 2013 10:51:56 +0000 (10:51 +0000)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Fri, 8 Feb 2013 11:31:34 +0000 (11:31 +0000)
At the moment, if the length of the register field format is
N bytes, we can only get anything meaningful back to userspace
by providing a buffer that is N + 2 bytes large.  Fix this
so we that we only need to provide a buffer of N bytes.

Signed-off-by: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/base/regmap/regmap-debugfs.c

index faa93cc6802e59f08344e9990600d736b5abe27b..0e94fd3c95a337b9cf13a9c4b454496111dd5f76 100644 (file)
@@ -185,7 +185,7 @@ static ssize_t regmap_read_debugfs(struct regmap *map, unsigned int from,
                /* If we're in the region the user is trying to read */
                if (p >= *ppos) {
                        /* ...but not beyond it */
-                       if (buf_pos + 1 + map->debugfs_tot_len >= count)
+                       if (buf_pos + map->debugfs_tot_len > count)
                                break;
 
                        /* Format the register */