Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 02a71600 authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

Input: tps6507x-ts - use bool for booleans

parent 04848ba8
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -45,12 +45,12 @@ struct tps6507x_ts {
	struct ts_event		tc;
	struct tps6507x_dev	*mfd;
	u16			model;
	unsigned		pendown;
	u16			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,7 +165,7 @@ 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;

@@ -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: