mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-26 20:44:32 +08:00
Input: atmel_mxt_ts - move completion to after config crc is updated
Signed-off-by: Nick Dyer <nick.dyer@itdev.co.uk> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
2ca3ba0ae4
commit
19a7121e5e
@ -728,13 +728,13 @@ static void mxt_proc_t6_messages(struct mxt_data *data, u8 *msg)
|
||||
u8 status = msg[1];
|
||||
u32 crc = msg[2] | (msg[3] << 8) | (msg[4] << 16);
|
||||
|
||||
complete(&data->crc_completion);
|
||||
|
||||
if (crc != data->config_crc) {
|
||||
data->config_crc = crc;
|
||||
dev_dbg(dev, "T6 Config Checksum: 0x%06X\n", crc);
|
||||
}
|
||||
|
||||
complete(&data->crc_completion);
|
||||
|
||||
/* Detect reset */
|
||||
if (status & MXT_T6_STATUS_RESET)
|
||||
complete(&data->reset_completion);
|
||||
|
Loading…
Reference in New Issue
Block a user