diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2010-06-10 06:24:35 (GMT) |
---|---|---|
committer | Clemens Ladisch <clemens@ladisch.de> | 2010-06-10 06:24:35 (GMT) |
commit | 60d32970c5a32e8c4f340a9e41993759ad658ef2 (patch) | |
tree | a7f60c934ae250f0291622cb02540638ef7cbf6d /drivers/firewire/core.h | |
parent | 3e07ec0eee1662f89e57f84aff625065beb2b209 (diff) | |
download | linux-fsl-qoriq-60d32970c5a32e8c4f340a9e41993759ad658ef2.tar.xz |
firewire: add read_csr_reg driver callback
To prepare for the following additions of more OHCI-implemented CSR
registers, replace the get_cycle_time driver callback with a generic
CSR register callback.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'drivers/firewire/core.h')
-rw-r--r-- | drivers/firewire/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firewire/core.h b/drivers/firewire/core.h index 25a72e5..c19e987 100644 --- a/drivers/firewire/core.h +++ b/drivers/firewire/core.h @@ -75,7 +75,7 @@ struct fw_card_driver { int (*enable_phys_dma)(struct fw_card *card, int node_id, int generation); - u32 (*get_cycle_time)(struct fw_card *card); + u32 (*read_csr_reg)(struct fw_card *card, int csr_offset); struct fw_iso_context * (*allocate_iso_context)(struct fw_card *card, |