diff options
author | Kristian Høgsberg <krh@redhat.com> | 2007-02-16 17:34:41 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-03-09 22:02:59 +0100 |
commit | 69cdb7268ca2e644665dae8ea26e35ce4e96679c (patch) | |
tree | 36c68569d97dd3ee0dfc942f32a7f0e7147770d2 /drivers/firewire/fw-ohci.c | |
parent | 295e3feb92e5073ec32a3c626302d4b92c4c8a95 (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-ohci.c')
-rw-r--r-- | drivers/firewire/fw-ohci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firewire/fw-ohci.c b/drivers/firewire/fw-ohci.c index 90db5a4f3ae..faa384426a1 100644 --- a/drivers/firewire/fw-ohci.c +++ b/drivers/firewire/fw-ohci.c @@ -1350,7 +1350,7 @@ ohci_allocate_iso_context(struct fw_card *card, int type) return &ctx->base; } -static int ohci_send_iso(struct fw_iso_context *base, s32 cycle) +static int ohci_start_iso(struct fw_iso_context *base, s32 cycle) { struct iso_context *ctx = container_of(base, struct iso_context, base); struct fw_ohci *ohci = ctx->context.ohci; @@ -1594,7 +1594,7 @@ static const struct fw_card_driver ohci_driver = { .allocate_iso_context = ohci_allocate_iso_context, .free_iso_context = ohci_free_iso_context, .queue_iso = ohci_queue_iso, - .send_iso = ohci_send_iso, + .start_iso = ohci_start_iso, }; static int software_reset(struct fw_ohci *ohci) |