aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/touchscreen/ads7846.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/input/touchscreen/ads7846.c')
-rw-r--r--drivers/input/touchscreen/ads7846.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/input/touchscreen/ads7846.c b/drivers/input/touchscreen/ads7846.c
index 2b01e56568f8..b5ad252f5cf1 100644
--- a/drivers/input/touchscreen/ads7846.c
+++ b/drivers/input/touchscreen/ads7846.c
@@ -97,6 +97,8 @@ struct ads7846 {
97 u16 x_plate_ohms; 97 u16 x_plate_ohms;
98 u16 pressure_max; 98 u16 pressure_max;
99 99
100 bool swap_xy;
101
100 struct ads7846_packet *packet; 102 struct ads7846_packet *packet;
101 103
102 struct spi_transfer xfer[18]; 104 struct spi_transfer xfer[18];
@@ -599,6 +601,10 @@ static void ads7846_rx(void *ads)
599 dev_dbg(&ts->spi->dev, "DOWN\n"); 601 dev_dbg(&ts->spi->dev, "DOWN\n");
600#endif 602#endif
601 } 603 }
604
605 if (ts->swap_xy)
606 swap(x, y);
607
602 input_report_abs(input, ABS_X, x); 608 input_report_abs(input, ABS_X, x);
603 input_report_abs(input, ABS_Y, y); 609 input_report_abs(input, ABS_Y, y);
604 input_report_abs(input, ABS_PRESSURE, Rt); 610 input_report_abs(input, ABS_PRESSURE, Rt);
@@ -917,6 +923,7 @@ static int __devinit ads7846_probe(struct spi_device *spi)
917 ts->spi = spi; 923 ts->spi = spi;
918 ts->input = input_dev; 924 ts->input = input_dev;
919 ts->vref_mv = pdata->vref_mv; 925 ts->vref_mv = pdata->vref_mv;
926 ts->swap_xy = pdata->swap_xy;
920 927
921 hrtimer_init(&ts->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); 928 hrtimer_init(&ts->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
922 ts->timer.function = ads7846_timer; 929 ts->timer.function = ads7846_timer;