mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
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: Sudip Mukherjee <sudipm.mukherjee@gmail.com> Signed-off-by: Dudley Du <dudl@cypress.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
879f2fea8a
commit
a487c03fa2
1 changed files with 3 additions and 7 deletions
|
@ -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 ||
|
||||
|
|
Loading…
Reference in a new issue