Commit 88367bd5 authored by Luca Ellero's avatar Luca Ellero Committed by Greg Kroah-Hartman

staging: comedi: ni_usb6501: cleanup response_size

Cleanup response_size in ni6501_send_command (READ_PORT command).
No logical/functional change is introduced by this patch.
Signed-off-by: default avatarLuca Ellero <luca.ellero@brickedbrain.com>
Reviewed-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ddf9b6a4
......@@ -193,8 +193,7 @@ static int ni6501_send_command(struct comedi_device *dev, int command,
case READ_PORT:
request_size = sizeof(READ_PORT_REQUEST);
/* 4 additional bytes for READ_PORT request */
response_size = sizeof(GENERIC_RESPONSE) + 4;
response_size = sizeof(READ_PORT_RESPONSE);
memcpy(tx, READ_PORT_REQUEST, request_size);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment