Skip to content

Commit

Permalink
meta-ti: Remove debug messages for meta-ti
Browse files Browse the repository at this point in the history
Signed-off-by: Joel A Fernandes <joelagnel@ti.com>
  • Loading branch information
Joel A Fernandes authored and koenkooi committed Apr 11, 2012
1 parent 9148fcb commit aec57ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/input/touchscreen/ti_tscadc.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,14 +186,14 @@ static irqreturn_t tsc_adc_interrupt(int irq, void *dev)

status = tscadc_readl(ts_dev, TSCADC_REG_IRQSTATUS);

printk("interrupt! status=%x\n", status);
// printk("interrupt! status=%x\n", status);
// if (status & TSCADC_IRQENB_EOS) {
// irqclr |= TSCADC_IRQENB_EOS;
// }

if (status & TSCADC_IRQENB_FIFO0THRES) {
fifo1count = tscadc_readl(ts_dev, TSCADC_REG_FIFO0CNT);
printk("fifo 0 count = %d\n", fifo1count);
// printk("fifo 0 count = %d\n", fifo1count);

for (i = 0; i < fifo1count; i++) {
read_sample = tscadc_readl(ts_dev, TSCADC_REG_FIFO0);
Expand Down

0 comments on commit aec57ec

Please sign in to comment.