Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
02a71600
Commit
02a71600
authored
Apr 15, 2013
by
Dmitry Torokhov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Input: tps6507x-ts - use bool for booleans
Signed-off-by:
Dmitry Torokhov
<
dmitry.torokhov@gmail.com
>
parent
04848ba8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
drivers/input/touchscreen/tps6507x-ts.c
drivers/input/touchscreen/tps6507x-ts.c
+7
-7
No files found.
drivers/input/touchscreen/tps6507x-ts.c
View file @
02a71600
...
...
@@ -45,12 +45,12 @@ struct tps6507x_ts {
struct
ts_event
tc
;
struct
tps6507x_dev
*
mfd
;
u16
model
;
u
nsigned
pendown
;
u
16
min_pressure
;
int
irq
;
void
(
*
clear_penirq
)(
void
);
unsigned
long
poll_period
;
/* ms */
u16
min_pressure
;
int
vref
;
/* non-zero to leave vref on */
bool
pendown
;
};
static
int
tps6507x_read_u8
(
struct
tps6507x_ts
*
tsc
,
u8
reg
,
u8
*
data
)
...
...
@@ -165,12 +165,12 @@ static void tps6507x_ts_handler(struct work_struct *work)
struct
tps6507x_ts
*
tsc
=
container_of
(
work
,
struct
tps6507x_ts
,
work
.
work
);
struct
input_dev
*
input_dev
=
tsc
->
input_dev
;
int
pendown
;
bool
pendown
;
int
schd
;
s32
ret
;
ret
=
tps6507x_adc_conversion
(
tsc
,
TPS6507X_TSCMODE_PRESSURE
,
&
tsc
->
tc
.
pressure
);
ret
=
tps6507x_adc_conversion
(
tsc
,
TPS6507X_TSCMODE_PRESSURE
,
&
tsc
->
tc
.
pressure
);
if
(
ret
)
goto
done
;
...
...
@@ -181,7 +181,7 @@ static void tps6507x_ts_handler(struct work_struct *work)
input_report_key
(
input_dev
,
BTN_TOUCH
,
0
);
input_report_abs
(
input_dev
,
ABS_PRESSURE
,
0
);
input_sync
(
input_dev
);
tsc
->
pendown
=
0
;
tsc
->
pendown
=
false
;
}
if
(
pendown
)
{
...
...
@@ -206,7 +206,7 @@ static void tps6507x_ts_handler(struct work_struct *work)
input_report_abs
(
input_dev
,
ABS_Y
,
tsc
->
tc
.
y
);
input_report_abs
(
input_dev
,
ABS_PRESSURE
,
tsc
->
tc
.
pressure
);
input_sync
(
input_dev
);
tsc
->
pendown
=
1
;
tsc
->
pendown
=
true
;
}
done:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment