Commit 91630955 authored by Daniel Kurtz's avatar Daniel Kurtz Committed by Henrik Rydberg

Input: atmel_mxt_ts - print less overhead when dumping objects

Conserve limited (PAGE_SIZE) sysfs output buffer space by only showing
readable objects and not printing the object's index, which is not useful
to userspace.
Signed-off-by: default avatarDaniel Kurtz <djkurtz@chromium.org>
Signed-off-by: default avatarHenrik Rydberg <rydberg@euromail.se>
parent 43a91d51
...@@ -897,15 +897,11 @@ static ssize_t mxt_object_show(struct device *dev, ...@@ -897,15 +897,11 @@ static ssize_t mxt_object_show(struct device *dev,
for (i = 0; i < data->info.object_num; i++) { for (i = 0; i < data->info.object_num; i++) {
object = data->object_table + i; object = data->object_table + i;
count += scnprintf(buf + count, PAGE_SIZE - count, if (!mxt_object_readable(object->type))
"Object[%d] (Type %d)\n", continue;
i + 1, object->type);
if (!mxt_object_readable(object->type)) {
count += scnprintf(buf + count, PAGE_SIZE - count, count += scnprintf(buf + count, PAGE_SIZE - count,
"\n"); "T%u:\n", object->type);
continue;
}
error = __mxt_read_reg(data->client, object->start_address, error = __mxt_read_reg(data->client, object->start_address,
object->size + 1, obuf); object->size + 1, obuf);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment