diff options
author | Kristian Høgsberg <krh@redhat.com> | 2007-02-16 17:34:44 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-03-09 22:03:00 +0100 |
commit | 9b32d5f3074e9b1afaa39a360a59fd77a2214783 (patch) | |
tree | 441cde033cc8a55b7bc9715684c42554fa259cc4 /drivers/firewire/fw-transaction.h | |
parent | 500be7251a4af1a87aa48285a23a741f74a97a89 (diff) |
firewire: Acummulate received iso headers and send them back to user space.
Signed-off-by: Kristian Høgsberg <krh@redhat.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire/fw-transaction.h')
-rw-r--r-- | drivers/firewire/fw-transaction.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/firewire/fw-transaction.h b/drivers/firewire/fw-transaction.h index b2a0a030c0f..7942e914b8f 100644 --- a/drivers/firewire/fw-transaction.h +++ b/drivers/firewire/fw-transaction.h @@ -335,7 +335,10 @@ struct fw_iso_packet { struct fw_iso_context; typedef void (*fw_iso_callback_t) (struct fw_iso_context *context, - int status, u32 cycle, void *data); + u32 cycle, + size_t header_length, + void *header, + void *data); /* An iso buffer is just a set of pages mapped for DMA in the * specified direction. Since the pages are to be used for DMA, they |