mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
ti-st: Fix complete_all() wrong usage
complete_all() should only be called once, doing it twice is a clear bug.
8565adbc82
("drivers/misc/ti-st: fix read fw version cmd") added the
additional complete_all() call. Since we call complete_all() when
leaving the function we can drop the complete_all() call inside
true branch of the if statement.
Signed-off-by: Daniel Wagner <daniel.wagner@bmw-carit.de>
Cc: Pavan Savoy <pavan_savoy@ti.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
66b58edf59
commit
8d026465ec
@ -78,7 +78,6 @@ static void validate_firmware_response(struct kim_data_s *kim_gdata)
|
||||
memcpy(kim_gdata->resp_buffer,
|
||||
kim_gdata->rx_skb->data,
|
||||
kim_gdata->rx_skb->len);
|
||||
complete_all(&kim_gdata->kim_rcvd);
|
||||
kim_gdata->rx_state = ST_W4_PACKET_TYPE;
|
||||
kim_gdata->rx_skb = NULL;
|
||||
kim_gdata->rx_count = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user