diff options
author | Huang Shijie <b32955@freescale.com> | 2011-12-31 13:43:00 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2012-07-20 13:19:43 +0800 |
commit | 803160bb16b8a5409e9eedc7017d98e163ecf362 (patch) | |
tree | 4bd48b20984d4f9fde432c2f2144bd294cbea7ca /drivers/input | |
parent | 0a73b42a5e94d71e4455a6712598f1e0a56b12a0 (diff) |
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 <b32955@freescale.com>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/touchscreen/egalax_ts.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |