From 82b51be6789aecc2d881232db6ea841d8d0ab8f9 Mon Sep 17 00:00:00 2001 From: Igor Kuzmin Date: Fri, 22 Jun 2012 14:48:01 +0400 Subject: [PATCH] Enable write access to isochronous reception buffer Signed-off-by: Stefan Richter --- src/fw-iso.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw-iso.c b/src/fw-iso.c index 9599299..8e8149e 100644 --- a/src/fw-iso.c +++ b/src/fw-iso.c @@ -473,7 +473,7 @@ iso_init(fw_handle_t handle, int type, prot = PROT_READ | PROT_WRITE; break; case FW_CDEV_ISO_CONTEXT_RECEIVE: - prot = PROT_READ; + prot = PROT_READ | PROT_WRITE; break; default: errno = EINVAL;