hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
kernel/drivers/input/touchscreen/focaltech_touch/focaltech_test/focaltech_test_ini.c
....@@ -128,22 +128,6 @@
128128 return 0;
129129 }
130130
131
-static int isspace(int x)
132
-{
133
- if (x == ' ' || x == '\t' || x == '\n' || x == '\f' || x == '\b' || x == '\r')
134
- return 1;
135
- else
136
- return 0;
137
-}
138
-
139
-static int isdigit(int x)
140
-{
141
- if (x <= '9' && x >= '0')
142
- return 1;
143
- else
144
- return 0;
145
-}
146
-
147131 static long fts_atol(char *nptr)
148132 {
149133 int c; /* current char */