summaryrefslogtreecommitdiffstats
path: root/src/dispatch.c
diff options
context:
space:
mode:
authorGravatar Stefan Richter 2010-07-14 17:33:37 +0200
committerGravatar Stefan Richter 2010-09-07 11:27:09 +0200
commit824ababa4dfe80df6598f2125e343a5f29222163 (patch)
tree2badbe7aef61fbd6c04bbf476a3256760d02dbb2 /src/dispatch.c
parentFilter incoming requests per card (diff)
Implement raw1394_(start_)phy_packet_write() on firewire-core
Requires kernel 2.6.36 or newer at runtime and linux-headers 2.6.36 or newer at build time. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'src/dispatch.c')
-rw-r--r--src/dispatch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dispatch.c b/src/dispatch.c
index 17eb28d..72a45a4 100644
--- a/src/dispatch.c
+++ b/src/dispatch.c
@@ -292,7 +292,7 @@ int raw1394_phy_packet_write (raw1394handle_t handle, quadlet_t data)
return -1;
}
if (handle->is_fw)
- return fw_phy_packet_write(handle->mode.fw, data);
+ return fw_phy_packet_write(handle, data);
else
return ieee1394_phy_packet_write(handle, data);
}