Lines Matching defs:fw_card
83 struct fw_card { struct
84 const struct fw_card_driver *driver; argument
85 struct device *device;
86 struct kref kref;
87 struct completion done;
89 int node_id;
90 int generation;
91 int current_tlabel;
92 u64 tlabel_mask;
93 struct list_head transaction_list;
94 u64 reset_jiffies;
96 u32 split_timeout_hi;
97 u32 split_timeout_lo;
98 unsigned int split_timeout_cycles;
99 unsigned int split_timeout_jiffies;
101 unsigned long long guid;
102 unsigned max_receive;
103 int link_speed;
104 int config_rom_generation;
106 spinlock_t lock; /* Take this lock when handling the lists in
108 struct fw_node *local_node;
109 struct fw_node *root_node;
110 struct fw_node *irm_node;
111 u8 color; /* must be u8 to match the definition in struct fw_node */
112 int gap_count;
113 bool beta_repeaters_present;
115 int index;
116 struct list_head link;
141 static inline struct fw_card *fw_card_get(struct fw_card *card) in fw_card_get() argument