|
@@ -93,7 +93,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 we're in the region the user is trying to read */
|
|
if (p >= *ppos) {
|
|
if (p >= *ppos) {
|
|
/* ...but not beyond it */
|
|
/* ...but not beyond it */
|
|
- if (buf_pos >= count - 1 - map->debugfs_tot_len)
|
|
|
|
|
|
+ if (buf_pos + 1 + map->debugfs_tot_len >= count)
|
|
break;
|
|
break;
|
|
|
|
|
|
/* Format the register */
|
|
/* Format the register */
|