aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firewire/fw-transaction.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/firewire/fw-transaction.h')
-rw-r--r--drivers/firewire/fw-transaction.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/firewire/fw-transaction.h b/drivers/firewire/fw-transaction.h
index 89c6dda27936..9e92edad68d7 100644
--- a/drivers/firewire/fw-transaction.h
+++ b/drivers/firewire/fw-transaction.h
@@ -354,6 +354,7 @@ struct fw_iso_context {
354 int type; 354 int type;
355 int channel; 355 int channel;
356 int speed; 356 int speed;
357 size_t header_size;
357 fw_iso_callback_t callback; 358 fw_iso_callback_t callback;
358 void *callback_data; 359 void *callback_data;
359}; 360};
@@ -369,10 +370,8 @@ void
369fw_iso_buffer_destroy(struct fw_iso_buffer *buffer, struct fw_card *card); 370fw_iso_buffer_destroy(struct fw_iso_buffer *buffer, struct fw_card *card);
370 371
371struct fw_iso_context * 372struct fw_iso_context *
372fw_iso_context_create(struct fw_card *card, int type, 373fw_iso_context_create(struct fw_card *card, int type, size_t header_size,
373 fw_iso_callback_t callback, 374 fw_iso_callback_t callback, void *callback_data);
374 void *callback_data);
375
376 375
377void 376void
378fw_iso_context_destroy(struct fw_iso_context *ctx); 377fw_iso_context_destroy(struct fw_iso_context *ctx);