Merge tag 'lsk-v3.10-15.10-android'
[firefly-linux-kernel-4.4.55.git] / include / linux / ct36x.h
1 #ifndef __LINUX_CT36X__
2 #define __LINUX_CT36X__
3
4 #define CT36X_NAME      "ct36x_ts"
5
6 struct ct36x_gpio{
7         int gpio;
8         int active_low;
9 };
10
11 struct ct36x_platform_data{
12         int model;
13
14         int x_max;
15         int y_max;
16         
17         struct ct36x_gpio rst_io;
18         struct ct36x_gpio irq_io;
19
20         int orientation[4];
21 };
22
23 #endif