diff options
author | Kristian Høgsberg <krh@localhost.localdomain> | 2007-01-26 00:37:50 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-03-09 22:02:44 +0100 |
commit | 83db801ce8c644edee49f4364c7ebdfef1657762 (patch) | |
tree | 8180198c618d78ce7b774951ffa4e1a6d553a7e1 /drivers/firewire/fw-transaction.h | |
parent | cfb01381f4ffcd05aefe76c74911ba6bc996e8ba (diff) | |
download | op-kernel-dev-83db801ce8c644edee49f4364c7ebdfef1657762.zip op-kernel-dev-83db801ce8c644edee49f4364c7ebdfef1657762.tar.gz |
firewire: Implement gap count optimization.
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-transaction.h')
-rw-r--r-- | drivers/firewire/fw-transaction.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/firewire/fw-transaction.h b/drivers/firewire/fw-transaction.h index 22d2871..df65245 100644 --- a/drivers/firewire/fw-transaction.h +++ b/drivers/firewire/fw-transaction.h @@ -259,6 +259,8 @@ struct fw_card { struct fw_node *root_node; struct fw_node *irm_node; int color; + int gap_count; + int topology_type; int index; @@ -386,8 +388,8 @@ fw_send_request(struct fw_card *card, struct fw_transaction *t, void fw_flush_transactions(struct fw_card *card); -void -fw_send_force_root(struct fw_card *card, int node_id, int generation); +void fw_send_phy_config(struct fw_card *card, + int node_id, int generation, int gap_count); /* Called by the topology code to inform the device code of node * activity; found, lost, or updated nodes */ |