diff options
Diffstat (limited to 'drivers/firewire/fw-transaction.h')
-rw-r--r-- | drivers/firewire/fw-transaction.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/firewire/fw-transaction.h b/drivers/firewire/fw-transaction.h index 50ec2c683a31..8f0283cf1a7a 100644 --- a/drivers/firewire/fw-transaction.h +++ b/drivers/firewire/fw-transaction.h | |||
@@ -391,6 +391,8 @@ struct fw_card_driver { | |||
391 | 391 | ||
392 | void (*send_request) (struct fw_card *card, struct fw_packet *packet); | 392 | void (*send_request) (struct fw_card *card, struct fw_packet *packet); |
393 | void (*send_response) (struct fw_card *card, struct fw_packet *packet); | 393 | void (*send_response) (struct fw_card *card, struct fw_packet *packet); |
394 | /* Calling cancel is valid once a packet has been submitted. */ | ||
395 | int (*cancel_packet) (struct fw_card *card, struct fw_packet *packet); | ||
394 | 396 | ||
395 | /* Allow the specified node ID to do direct DMA out and in of | 397 | /* Allow the specified node ID to do direct DMA out and in of |
396 | * host memory. The card will disable this for all node when | 398 | * host memory. The card will disable this for all node when |
@@ -421,6 +423,9 @@ fw_send_request(struct fw_card *card, struct fw_transaction *t, | |||
421 | void *data, size_t length, | 423 | void *data, size_t length, |
422 | fw_transaction_callback_t callback, void *callback_data); | 424 | fw_transaction_callback_t callback, void *callback_data); |
423 | 425 | ||
426 | int fw_cancel_transaction(struct fw_card *card, | ||
427 | struct fw_transaction *transaction); | ||
428 | |||
424 | void fw_flush_transactions(struct fw_card *card); | 429 | void fw_flush_transactions(struct fw_card *card); |
425 | 430 | ||
426 | void fw_send_phy_config(struct fw_card *card, | 431 | void fw_send_phy_config(struct fw_card *card, |