Skip to content

Commit

Permalink
Input: cyttsp4 - use swap() in cyttsp4_get_touch()
Browse files Browse the repository at this point in the history
Use kernel.h macro definition.

Thanks to Julia Lawall for Coccinelle scripting support.

Signed-off-by: Fabian Frederick <[email protected]>
Signed-off-by: Dmitry Torokhov <[email protected]>
  • Loading branch information
Fabian Frederick authored and dtor committed Jun 11, 2015
1 parent c7a4fb5 commit cf99289
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions drivers/input/touchscreen/cyttsp4_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,6 @@ static void cyttsp4_get_touch(struct cyttsp4_mt_data *md,
struct device *dev = &md->input->dev;
struct cyttsp4_sysinfo *si = md->si;
enum cyttsp4_tch_abs abs;
int tmp;
bool flipped;

for (abs = CY_TCH_X; abs < CY_TCH_NUM_ABS; abs++) {
Expand All @@ -790,9 +789,7 @@ static void cyttsp4_get_touch(struct cyttsp4_mt_data *md,
}

if (md->pdata->flags & CY_FLAG_FLIP) {
tmp = touch->abs[CY_TCH_X];
touch->abs[CY_TCH_X] = touch->abs[CY_TCH_Y];
touch->abs[CY_TCH_Y] = tmp;
swap(touch->abs[CY_TCH_X], touch->abs[CY_TCH_Y]);
flipped = true;
} else
flipped = false;
Expand Down

0 comments on commit cf99289

Please sign in to comment.