diff options
author | Kristian Høgsberg <krh@redhat.com> | 2007-02-16 17:34:42 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-03-09 16:02:59 -0500 |
commit | b82956685aab4a9d333714300eb8a86fed6c9ab3 (patch) | |
tree | dec07ca99cb70714ec1bb3e5c53314a7a5573e73 /drivers/firewire/fw-transaction.h | |
parent | 69cdb7268ca2e644665dae8ea26e35ce4e96679c (diff) |
firewire: Implement functionality to stop isochronous DMA contexts.
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, 5 insertions, 0 deletions
diff --git a/drivers/firewire/fw-transaction.h b/drivers/firewire/fw-transaction.h index 9ccbed80cebb..b2a0a030c0fd 100644 --- a/drivers/firewire/fw-transaction.h +++ b/drivers/firewire/fw-transaction.h | |||
@@ -386,6 +386,9 @@ int | |||
386 | fw_iso_context_start(struct fw_iso_context *ctx, | 386 | fw_iso_context_start(struct fw_iso_context *ctx, |
387 | int channel, int speed, int cycle); | 387 | int channel, int speed, int cycle); |
388 | 388 | ||
389 | int | ||
390 | fw_iso_context_stop(struct fw_iso_context *ctx); | ||
391 | |||
389 | struct fw_card_driver { | 392 | struct fw_card_driver { |
390 | const char *name; | 393 | const char *name; |
391 | 394 | ||
@@ -428,6 +431,8 @@ struct fw_card_driver { | |||
428 | struct fw_iso_packet *packet, | 431 | struct fw_iso_packet *packet, |
429 | struct fw_iso_buffer *buffer, | 432 | struct fw_iso_buffer *buffer, |
430 | unsigned long payload); | 433 | unsigned long payload); |
434 | |||
435 | int (*stop_iso)(struct fw_iso_context *ctx); | ||
431 | }; | 436 | }; |
432 | 437 | ||
433 | int | 438 | int |