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