aboutsummaryrefslogtreecommitdiff
path: root/drivers/firewire/fw-iso.c
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2007-02-16 17:34:41 -0500
committerStefan Richter <stefanr@s5r6.in-berlin.de>2007-03-09 22:02:59 +0100
commit69cdb7268ca2e644665dae8ea26e35ce4e96679c (patch)
tree36c68569d97dd3ee0dfc942f32a7f0e7147770d2 /drivers/firewire/fw-iso.c
parent295e3feb92e5073ec32a3c626302d4b92c4c8a95 (diff)
firewire: Rename 'send_iso' to 'start_iso'.
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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/firewire/fw-iso.c b/drivers/firewire/fw-iso.c
index 4c6dc99a1ff..d84792fe619 100644
--- a/drivers/firewire/fw-iso.c
+++ b/drivers/firewire/fw-iso.c
@@ -134,15 +134,15 @@ void fw_iso_context_destroy(struct fw_iso_context *ctx)
EXPORT_SYMBOL(fw_iso_context_destroy);
int
-fw_iso_context_send(struct fw_iso_context *ctx,
- int channel, int speed, int cycle)
+fw_iso_context_start(struct fw_iso_context *ctx,
+ int channel, int speed, int cycle)
{
ctx->channel = channel;
ctx->speed = speed;
- return ctx->card->driver->send_iso(ctx, cycle);
+ return ctx->card->driver->start_iso(ctx, cycle);
}
-EXPORT_SYMBOL(fw_iso_context_send);
+EXPORT_SYMBOL(fw_iso_context_start);
int
fw_iso_context_queue(struct fw_iso_context *ctx,