|
@@ -432,7 +432,7 @@ static ssize_t regmap_access_read_file(struct file *file,
|
|
/* 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 - tot_len)
|
|
|
|
|
|
+ if (buf_pos + tot_len + 1 >= count)
|
|
break;
|
|
break;
|
|
|
|
|
|
/* Format the register */
|
|
/* Format the register */
|