Commit 5eef0df910095402fb607ae6cda72e33f8eb9af3

Henrik Nordstrom 2014-06-26T12:23:49

KnC: Correctly associate reports with their originating core

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/driver-knc.c b/driver-knc.c
index 66fba0e..fa8244a 100644
--- a/driver-knc.c
+++ b/driver-knc.c
@@ -221,6 +221,7 @@ static void knc_transfer(struct thr_info *thr, int channel, int request_length, 
 	response_info->type = response_type;
 	response_info->request_length = request_length;
 	response_info->response_length = response_length;
+	response_info->data = data;
 	buffer->size = knc_prepare_transfer(buffer->txbuf, buffer->size, MAX_SPI_SIZE, channel, request_length, request, response_length);
 }