Input: aiptek - tolerate newlines in sysfs files
authorRene van Paassen <rene.vanpaassen@gmail.com>
Mon, 21 May 2007 04:32:12 +0000 (00:32 -0400)
committerDmitry Torokhov <dtor@insightbb.com>
Tue, 10 Jul 2007 04:35:17 +0000 (00:35 -0400)
Now echo "some value" > /sys/......./somefile is also acceptable.

Signed-off-by: Rene van Paassen <rene.vanpaassen@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
drivers/input/tablet/aiptek.c

index 0c78dc4..54c8d6f 100644 (file)
@@ -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;