X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=hardware%2Fvictor-dmm%2Fapi.c;h=56c53e503c90d98ab60338e56198071c8bd4f789;hb=102f12396660e0784134bccce5cc0679db325751;hp=74523ed7aabbfd4cef6e0baab92a0f917e3f4ce2;hpb=85b69c2b64fc3f0b0478063a983c1920bf0e30a7;p=libsigrok.git diff --git a/hardware/victor-dmm/api.c b/hardware/victor-dmm/api.c index 74523ed7..56c53e50 100644 --- a/hardware/victor-dmm/api.c +++ b/hardware/victor-dmm/api.c @@ -348,7 +348,7 @@ static int handle_events(int fd, int revents, void *cb_data) } if (sdi->status == SR_ST_STOPPING) { - usb_source_remove(drvc->sr_ctx); + usb_source_remove(sdi->session, drvc->sr_ctx); dev_close(sdi); @@ -387,7 +387,8 @@ static int dev_acquisition_start(const struct sr_dev_inst *sdi, void *cb_data) /* Send header packet to the session bus. */ std_session_send_df_header(cb_data, LOG_PREFIX); - usb_source_add(drvc->sr_ctx, 100, handle_events, (void *)sdi); + usb_source_add(sdi->session, drvc->sr_ctx, 100, + handle_events, (void *)sdi); buf = g_try_malloc(DMM_DATA_SIZE); transfer = libusb_alloc_transfer(0);