|
@@ -252,8 +252,6 @@ static irqreturn_t titsc_irq(int irq, void *dev)
|
|
|
unsigned int x = 0, y = 0;
|
|
|
unsigned int z1, z2, z;
|
|
|
unsigned int fsm;
|
|
|
- unsigned int fifo1count, fifo0count;
|
|
|
- int i;
|
|
|
|
|
|
status = titsc_readl(ts_dev, REG_IRQSTATUS);
|
|
|
if (status & IRQENB_FIFO0THRES) {
|
|
@@ -262,14 +260,6 @@ static irqreturn_t titsc_irq(int irq, void *dev)
|
|
|
z1 = titsc_readl(ts_dev, REG_FIFO0) & 0xfff;
|
|
|
z2 = titsc_readl(ts_dev, REG_FIFO1) & 0xfff;
|
|
|
|
|
|
- fifo1count = titsc_readl(ts_dev, REG_FIFO1CNT);
|
|
|
- for (i = 0; i < fifo1count; i++)
|
|
|
- titsc_readl(ts_dev, REG_FIFO1);
|
|
|
-
|
|
|
- fifo0count = titsc_readl(ts_dev, REG_FIFO0CNT);
|
|
|
- for (i = 0; i < fifo0count; i++)
|
|
|
- titsc_readl(ts_dev, REG_FIFO0);
|
|
|
-
|
|
|
if (ts_dev->pen_down && z1 != 0 && z2 != 0) {
|
|
|
/*
|
|
|
* Calculate pressure using formula
|