File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
drivers/input/touchscreen Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ static int ad7879_open(struct input_dev *input)
289
289
return 0 ;
290
290
}
291
291
292
- static void ad7879_close (struct input_dev * input )
292
+ static void ad7879_close (struct input_dev * input )
293
293
{
294
294
struct ad7879 * ts = input_get_drvdata (input );
295
295
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ struct ektf2127_ts {
51
51
struct touchscreen_properties prop ;
52
52
};
53
53
54
- static void ektf2127_parse_coordinates (const u8 * buf , unsigned int touch_count ,
54
+ static void ektf2127_parse_coordinates (const u8 * buf , unsigned int touch_count ,
55
55
struct input_mt_pos * touches )
56
56
{
57
57
int index = 0 ;
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ struct gunze {
53
53
char phys [32 ];
54
54
};
55
55
56
- static void gunze_process_packet (struct gunze * gunze )
56
+ static void gunze_process_packet (struct gunze * gunze )
57
57
{
58
58
struct input_dev * dev = gunze -> dev ;
59
59
@@ -72,7 +72,7 @@ static void gunze_process_packet(struct gunze* gunze)
72
72
static irqreturn_t gunze_interrupt (struct serio * serio ,
73
73
unsigned char data , unsigned int flags )
74
74
{
75
- struct gunze * gunze = serio_get_drvdata (serio );
75
+ struct gunze * gunze = serio_get_drvdata (serio );
76
76
77
77
if (data == '\r' ) {
78
78
gunze_process_packet (gunze );
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ static void inexio_process_data(struct inexio *pinexio)
79
79
static irqreturn_t inexio_interrupt (struct serio * serio ,
80
80
unsigned char data , unsigned int flags )
81
81
{
82
- struct inexio * pinexio = serio_get_drvdata (serio );
82
+ struct inexio * pinexio = serio_get_drvdata (serio );
83
83
84
84
pinexio -> data [pinexio -> idx ] = data ;
85
85
@@ -97,7 +97,7 @@ static irqreturn_t inexio_interrupt(struct serio *serio,
97
97
98
98
static void inexio_disconnect (struct serio * serio )
99
99
{
100
- struct inexio * pinexio = serio_get_drvdata (serio );
100
+ struct inexio * pinexio = serio_get_drvdata (serio );
101
101
102
102
input_get_device (pinexio -> dev );
103
103
input_unregister_device (pinexio -> dev );
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ static void mtouch_process_response(struct mtouch *mtouch)
90
90
static irqreturn_t mtouch_interrupt (struct serio * serio ,
91
91
unsigned char data , unsigned int flags )
92
92
{
93
- struct mtouch * mtouch = serio_get_drvdata (serio );
93
+ struct mtouch * mtouch = serio_get_drvdata (serio );
94
94
95
95
mtouch -> data [mtouch -> idx ] = data ;
96
96
@@ -110,7 +110,7 @@ static irqreturn_t mtouch_interrupt(struct serio *serio,
110
110
111
111
static void mtouch_disconnect (struct serio * serio )
112
112
{
113
- struct mtouch * mtouch = serio_get_drvdata (serio );
113
+ struct mtouch * mtouch = serio_get_drvdata (serio );
114
114
115
115
input_get_device (mtouch -> dev );
116
116
input_unregister_device (mtouch -> dev );
You can’t perform that action at this time.
0 commit comments