upekts: Fix regression during initialisation
The driver has two helper functions to format a command. In one case, the function was accidentally changed during the port to the new driver APIs. See https://bugzilla.redhat.com/show_bug.cgi?id=1832229
This commit is contained in:
parent
eefc954f91
commit
48aa6d0252
1 changed files with 1 additions and 1 deletions
|
@ -700,7 +700,7 @@ initsm_run_state (FpiSsm *ssm, FpDevice *dev)
|
|||
break;
|
||||
|
||||
case SEND_RESP03:;
|
||||
transfer = alloc_send_cmd28_transfer (dev, ++upekdev->seq, init_resp03, sizeof (init_resp03));
|
||||
transfer = alloc_send_cmdresponse_transfer (dev, ++upekdev->seq, init_resp03, sizeof (init_resp03));
|
||||
transfer->ssm = ssm;
|
||||
transfer->short_is_error = TRUE;
|
||||
fpi_usb_transfer_submit (transfer, TIMEOUT, NULL, fpi_ssm_usb_transfer_cb, NULL);
|
||||
|
|
Loading…
Reference in a new issue