ti_tscadc.h 334 B

123456789101112131415161718
  1. #ifndef __LINUX_TI_TSCADC_H
  2. #define __LINUX_TI_TSCADC_H
  3. /**
  4. * struct tsc_data Touchscreen wire configuration
  5. * @wires: Wires refer to application modes
  6. * i.e. 4/5/8 wire touchscreen support
  7. * on the platform.
  8. * @x_plate_resistance: X plate resistance.
  9. */
  10. struct tsc_data {
  11. int wires;
  12. int x_plate_resistance;
  13. };
  14. #endif