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

Commit a487c03f authored by Dudley Du's avatar Dudley Du Committed by Dmitry Torokhov
Browse files

Input: cyapa - fix the copy paste error on electrodes_rx value



Fix the copy paste error on the electrodes_rx value set code which will
cause the electrodes_rx value be always set to the value of electrodes_y.

Reported-by: default avatarSudip Mukherjee <sudipm.mukherjee@gmail.com>
Signed-off-by: default avatarDudley Du <dudl@cypress.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 879f2fea
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
@@ -241,14 +241,10 @@ static int cyapa_gen6_read_sys_info(struct cyapa *cyapa)
	memcpy(&cyapa->product_id[13], &resp_data[62], 2);
	cyapa->product_id[15] = '\0';

	/* Get the number of Rx electrodes. */
	rotat_align = resp_data[68];
	if (rotat_align) {
		cyapa->electrodes_rx = cyapa->electrodes_y;
		cyapa->electrodes_rx = cyapa->electrodes_y;
	} else {
		cyapa->electrodes_rx = cyapa->electrodes_x;
		cyapa->electrodes_rx = cyapa->electrodes_y;
	}
	cyapa->electrodes_rx =
		rotat_align ? cyapa->electrodes_y : cyapa->electrodes_x;
	cyapa->aligned_electrodes_rx = (cyapa->electrodes_rx + 3) & ~3u;

	if (!cyapa->electrodes_x || !cyapa->electrodes_y ||