diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2009-03-05 13:07:00 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2009-03-24 15:56:48 -0400 |
commit | ba27e1f7bf220799cd3d7503f82bda71b8ebe8c5 (patch) | |
tree | 0d08f399eae860e112f3031a09be674c679d9189 /drivers/firewire/fw-transaction.c | |
parent | e1eff7a393d4a4e3ad1cf65fcba899146840bfd2 (diff) |
firewire: core: normalize a function argument name
It's called "payload" rather than "data" almost everywhere in
fw-transaction.c.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire/fw-transaction.c')
-rw-r--r-- | drivers/firewire/fw-transaction.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/firewire/fw-transaction.c b/drivers/firewire/fw-transaction.c index 1537737e4420..76938fe432a0 100644 --- a/drivers/firewire/fw-transaction.c +++ b/drivers/firewire/fw-transaction.c | |||
@@ -317,15 +317,15 @@ static void transaction_callback(struct fw_card *card, int rcode, | |||
317 | */ | 317 | */ |
318 | int fw_run_transaction(struct fw_card *card, int tcode, int destination_id, | 318 | int fw_run_transaction(struct fw_card *card, int tcode, int destination_id, |
319 | int generation, int speed, unsigned long long offset, | 319 | int generation, int speed, unsigned long long offset, |
320 | void *data, size_t length) | 320 | void *payload, size_t length) |
321 | { | 321 | { |
322 | struct transaction_callback_data d; | 322 | struct transaction_callback_data d; |
323 | struct fw_transaction t; | 323 | struct fw_transaction t; |
324 | 324 | ||
325 | init_completion(&d.done); | 325 | init_completion(&d.done); |
326 | d.payload = data; | 326 | d.payload = payload; |
327 | fw_send_request(card, &t, tcode, destination_id, generation, speed, | 327 | fw_send_request(card, &t, tcode, destination_id, generation, speed, |
328 | offset, data, length, transaction_callback, &d); | 328 | offset, payload, length, transaction_callback, &d); |
329 | wait_for_completion(&d.done); | 329 | wait_for_completion(&d.done); |
330 | 330 | ||
331 | return d.rcode; | 331 | return d.rcode; |