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 16:02:59 -0500 |
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 90db5a4f3aee..faa384426a12 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) | |||
1350 | return &ctx->base; | 1350 | return &ctx->base; |
1351 | } | 1351 | } |
1352 | 1352 | ||
1353 | static int ohci_send_iso(struct fw_iso_context *base, s32 cycle) | 1353 | static int ohci_start_iso(struct fw_iso_context *base, s32 cycle) |
1354 | { | 1354 | { |
1355 | struct iso_context *ctx = container_of(base, struct iso_context, base); | 1355 | struct iso_context *ctx = container_of(base, struct iso_context, base); |
1356 | struct fw_ohci *ohci = ctx->context.ohci; | 1356 | struct fw_ohci *ohci = ctx->context.ohci; |
@@ -1594,7 +1594,7 @@ static const struct fw_card_driver ohci_driver = { | |||
1594 | .allocate_iso_context = ohci_allocate_iso_context, | 1594 | .allocate_iso_context = ohci_allocate_iso_context, |
1595 | .free_iso_context = ohci_free_iso_context, | 1595 | .free_iso_context = ohci_free_iso_context, |
1596 | .queue_iso = ohci_queue_iso, | 1596 | .queue_iso = ohci_queue_iso, |
1597 | .send_iso = ohci_send_iso, | 1597 | .start_iso = ohci_start_iso, |
1598 | }; | 1598 | }; |
1599 | 1599 | ||
1600 | static int software_reset(struct fw_ohci *ohci) | 1600 | static int software_reset(struct fw_ohci *ohci) |