aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/touchscreen/mxt224_u1.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/input/touchscreen/mxt224_u1.c')
-rw-r--r--drivers/input/touchscreen/mxt224_u1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/touchscreen/mxt224_u1.c b/drivers/input/touchscreen/mxt224_u1.c
index ffda78f..cd0674f 100644
--- a/drivers/input/touchscreen/mxt224_u1.c
+++ b/drivers/input/touchscreen/mxt224_u1.c
@@ -768,7 +768,7 @@ void check_chip_calibration(unsigned char one_touch_input_flag)
}
}
- printk(KERN_ERR "[TSP] t: %d, a: %d\n", tch_ch, atch_ch);
+ pr_debug("[TSP] t: %d, a: %d\n", tch_ch, atch_ch);
/* send page up command so we can detect
when data updates next time, page byte will sit at 1
@@ -1242,7 +1242,7 @@ static void report_input_data(struct mxt224_data *data)
printk(KERN_ERR "[TSP] Up[%d] %4d,%4d\n", i,
data->fingers[i].x, data->fingers[i].y);
#else
- printk(KERN_ERR "[TSP] Up[%d]\n", i);
+ pr_debug("[TSP] Up[%d]\n", i);
#endif
continue;
@@ -1286,7 +1286,7 @@ static void report_input_data(struct mxt224_data *data)
data->fingers[i].x, data->fingers[i].y);
#else
if (copy_data->touch_is_pressed_arr[i] == 1) {
- printk(KERN_ERR "[TSP] Dn[%d]\n", i);
+ pr_debug("[TSP] Dn[%d]\n", i);
copy_data->touch_is_pressed_arr[i] = 2;
}
#endif