Browse Source

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>
Nick Dyer 7 years ago
parent
commit
19a7121e5e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      drivers/input/touchscreen/atmel_mxt_ts.c

+ 2 - 2
drivers/input/touchscreen/atmel_mxt_ts.c

@@ -728,13 +728,13 @@ static void mxt_proc_t6_messages(struct mxt_data *data, u8 *msg)
 	u8 status = msg[1];
 	u8 status = msg[1];
 	u32 crc = msg[2] | (msg[3] << 8) | (msg[4] << 16);
 	u32 crc = msg[2] | (msg[3] << 8) | (msg[4] << 16);
 
 
-	complete(&data->crc_completion);
-
 	if (crc != data->config_crc) {
 	if (crc != data->config_crc) {
 		data->config_crc = crc;
 		data->config_crc = crc;
 		dev_dbg(dev, "T6 Config Checksum: 0x%06X\n", crc);
 		dev_dbg(dev, "T6 Config Checksum: 0x%06X\n", crc);
 	}
 	}
 
 
+	complete(&data->crc_completion);
+
 	/* Detect reset */
 	/* Detect reset */
 	if (status & MXT_T6_STATUS_RESET)
 	if (status & MXT_T6_STATUS_RESET)
 		complete(&data->reset_completion);
 		complete(&data->reset_completion);