diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2010-06-12 14:35:52 -0400 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2010-06-19 07:01:41 -0400 |
commit | 0fcff4e39323f466a47684d7c8ffa77e1be86c8a (patch) | |
tree | cdbe9d239ae59c18a48a34d937da3f658c61e873 /drivers/firewire/core.h | |
parent | b384cf18873da1ed100662aa7373edf5883a1c24 (diff) |
firewire: rename CSR access driver methods
Rather than "read a Control and Status Registers (CSR) Architecture
register" I prefer to say "read a Control and Status Register".
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire/core.h')
-rw-r--r-- | drivers/firewire/core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firewire/core.h b/drivers/firewire/core.h index 8280c625170b..3000dd74acfd 100644 --- a/drivers/firewire/core.h +++ b/drivers/firewire/core.h | |||
@@ -78,8 +78,8 @@ struct fw_card_driver { | |||
78 | int (*enable_phys_dma)(struct fw_card *card, | 78 | int (*enable_phys_dma)(struct fw_card *card, |
79 | int node_id, int generation); | 79 | int node_id, int generation); |
80 | 80 | ||
81 | u32 (*read_csr_reg)(struct fw_card *card, int csr_offset); | 81 | u32 (*read_csr)(struct fw_card *card, int csr_offset); |
82 | void (*write_csr_reg)(struct fw_card *card, int csr_offset, u32 value); | 82 | void (*write_csr)(struct fw_card *card, int csr_offset, u32 value); |
83 | 83 | ||
84 | struct fw_iso_context * | 84 | struct fw_iso_context * |
85 | (*allocate_iso_context)(struct fw_card *card, | 85 | (*allocate_iso_context)(struct fw_card *card, |