aboutsummaryrefslogtreecommitdiffstats
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 16:02:59 -0500
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 4c6dc99a1ff8..d84792fe619a 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)
134EXPORT_SYMBOL(fw_iso_context_destroy); 134EXPORT_SYMBOL(fw_iso_context_destroy);
135 135
136int 136int
137fw_iso_context_send(struct fw_iso_context *ctx, 137fw_iso_context_start(struct fw_iso_context *ctx,
138 int channel, int speed, int cycle) 138 int channel, int speed, int cycle)
139{ 139{
140 ctx->channel = channel; 140 ctx->channel = channel;
141 ctx->speed = speed; 141 ctx->speed = speed;
142 142
143 return ctx->card->driver->send_iso(ctx, cycle); 143 return ctx->card->driver->start_iso(ctx, cycle);
144} 144}
145EXPORT_SYMBOL(fw_iso_context_send); 145EXPORT_SYMBOL(fw_iso_context_start);
146 146
147int 147int
148fw_iso_context_queue(struct fw_iso_context *ctx, 148fw_iso_context_queue(struct fw_iso_context *ctx,