From: Rong Dian Date: Thu, 3 May 2012 07:59:31 +0000 (+0800) Subject: ENGR00181518 MAX11801: remove unnecessary debug information X-Git-Tag: v3.0.35-fsl~1093 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b0461b7dd6d70ed0be6479835e5ac984a38cbd50;p=karo-tx-linux.git ENGR00181518 MAX11801: remove unnecessary debug information remove unnecessary debug information e.g.,aux: bd8. Signed-off-by: Rong Dian --- diff --git a/drivers/input/touchscreen/max11801_ts.c b/drivers/input/touchscreen/max11801_ts.c index 0784687d231b..48ee3600a03b 100755 --- a/drivers/input/touchscreen/max11801_ts.c +++ b/drivers/input/touchscreen/max11801_ts.c @@ -135,7 +135,6 @@ static u32 max11801_dcm_sample_aux(struct i2c_client *client) printk(KERN_DEBUG "FIFO_RD_AUX_LSB read fails\n"); aux = (aux_buf[0] << 4) + (aux_buf[1] >> 4); - printk(KERN_DEBUG "aux: %4x\n", aux); /* voltage = (9170*aux)/7371; voltage is (26.2*3150*aux)/(16.2*0xFFF) @@ -143,8 +142,6 @@ static u32 max11801_dcm_sample_aux(struct i2c_client *client) sample_data = (14840*aux)/7371-1541; */ sample_data = (14840*aux)/7371; - pr_debug("FIFO_RD_AUX_MSB: %2x,FIFO_RD_AUX_LSB: %2x\n", - aux_buf[0], aux_buf[1]); return sample_data; }