From 12d5c76bca53b799b739ee887f82b3d4c10ac616 Mon Sep 17 00:00:00 2001 From: Huang Shijie Date: Sat, 31 Dec 2011 13:43:00 +0800 Subject: [PATCH] ENGR00171111 MX6Q/TOUCHSCREEN : change the printk to dynamic print Too much printk make the dmesg mess. Change it to dynamic print mode. Signed-off-by: Huang Shijie --- drivers/input/touchscreen/egalax_ts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/input/touchscreen/egalax_ts.c b/drivers/input/touchscreen/egalax_ts.c index 58273b9e3567..fff8afe1b41a 100644 --- a/drivers/input/touchscreen/egalax_ts.c +++ b/drivers/input/touchscreen/egalax_ts.c @@ -91,7 +91,7 @@ retry: dev_dbg(&client->dev, "recv ret:%d", ret); for (i = 0; i < MAX_I2C_DATA_LEN; i++) - printk(KERN_DEBUG " %x ", buf[i]); + dev_dbg(&client->dev, " %x ", buf[i]); if (buf[0] != REPORT_MODE_VENDOR && buf[0] != REPORT_MODE_SINGLE -- 2.39.5