diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2013-11-14 17:32:02 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-14 19:32:21 -0500 |
commit | 16735d022f72b20ddbb2274b8e109f69575e9b2b (patch) | |
tree | f567c7dfff06ae18899feab7cd8a79a7a0f7be40 /drivers/firewire | |
parent | c32f74ab2872994bc8336ed367313da3139350ca (diff) |
tree-wide: use reinit_completion instead of INIT_COMPLETION
Use this new function to make code more comprehensible, since we are
reinitialzing the completion, not initializing.
[akpm@linux-foundation.org: linux-next resyncs]
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Acked-by: Linus Walleij <linus.walleij@linaro.org> (personally at LCE13)
Cc: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/core-transaction.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firewire/core-transaction.c b/drivers/firewire/core-transaction.c index e5af0e3a26ec..0e799516a2ab 100644 --- a/drivers/firewire/core-transaction.c +++ b/drivers/firewire/core-transaction.c | |||
@@ -477,7 +477,7 @@ void fw_send_phy_config(struct fw_card *card, | |||
477 | phy_config_packet.header[1] = data; | 477 | phy_config_packet.header[1] = data; |
478 | phy_config_packet.header[2] = ~data; | 478 | phy_config_packet.header[2] = ~data; |
479 | phy_config_packet.generation = generation; | 479 | phy_config_packet.generation = generation; |
480 | INIT_COMPLETION(phy_config_done); | 480 | reinit_completion(&phy_config_done); |
481 | 481 | ||
482 | card->driver->send_request(card, &phy_config_packet); | 482 | card->driver->send_request(card, &phy_config_packet); |
483 | wait_for_completion_timeout(&phy_config_done, timeout); | 483 | wait_for_completion_timeout(&phy_config_done, timeout); |