From: Rene van Paassen Date: Mon, 21 May 2007 04:32:12 +0000 (-0400) Subject: Input: aiptek - tolerate newlines in sysfs files X-Git-Tag: firefly_0821_release~28375 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0112db36ef95e5632db071297f7df130725c47b9;p=firefly-linux-kernel-4.4.55.git Input: aiptek - tolerate newlines in sysfs files Now echo "some value" > /sys/......./somefile is also acceptable. Signed-off-by: Rene van Paassen Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/tablet/aiptek.c b/drivers/input/tablet/aiptek.c index 0c78dc4ed5cf..54c8d6f49833 100644 --- a/drivers/input/tablet/aiptek.c +++ b/drivers/input/tablet/aiptek.c @@ -375,8 +375,11 @@ static int map_str_to_val(const struct aiptek_map *map, const char *str, size_t { const struct aiptek_map *p; + if (str[count - 1] == '\n') + count--; + for (p = map; p->string; p++) - if (!strncmp(str, p->string, count)) + if (!strncmp(str, p->string, count)) return p->value; return AIPTEK_INVALID_VALUE;