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-iso.c | |
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-iso.c')
-rw-r--r-- | drivers/firewire/fw-iso.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/firewire/fw-iso.c b/drivers/firewire/fw-iso.c index d84792fe619a..1605e1157237 100644 --- a/drivers/firewire/fw-iso.c +++ b/drivers/firewire/fw-iso.c | |||
@@ -155,3 +155,10 @@ fw_iso_context_queue(struct fw_iso_context *ctx, | |||
155 | return card->driver->queue_iso(ctx, packet, buffer, payload); | 155 | return card->driver->queue_iso(ctx, packet, buffer, payload); |
156 | } | 156 | } |
157 | EXPORT_SYMBOL(fw_iso_context_queue); | 157 | EXPORT_SYMBOL(fw_iso_context_queue); |
158 | |||
159 | int | ||
160 | fw_iso_context_stop(struct fw_iso_context *ctx) | ||
161 | { | ||
162 | return ctx->card->driver->stop_iso(ctx); | ||
163 | } | ||
164 | EXPORT_SYMBOL(fw_iso_context_stop); | ||