Fix raw1394_iso_stop on firewire-core
The argument to FW_CDEV_IOC_STOP_ISO was missing. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
This commit is contained in:
parent
9d47becf25
commit
c321058ae3
|
@ -588,7 +588,7 @@ void fw_iso_stop(fw_handle_t handle)
|
||||||
struct fw_cdev_stop_iso stop_iso;
|
struct fw_cdev_stop_iso stop_iso;
|
||||||
|
|
||||||
stop_iso.handle = 0;
|
stop_iso.handle = 0;
|
||||||
ioctl(handle->iso.fd, FW_CDEV_IOC_STOP_ISO);
|
ioctl(handle->iso.fd, FW_CDEV_IOC_STOP_ISO, &stop_iso);
|
||||||
|
|
||||||
handle->iso.head = handle->iso.buffer;
|
handle->iso.head = handle->iso.buffer;
|
||||||
handle->iso.tail = handle->iso.buffer;
|
handle->iso.tail = handle->iso.buffer;
|
||||||
|
|
Reference in New Issue