Searched refs:has_be_header_quirk (Results 1 – 2 of 2) sorted by relevance
/linux/include/trace/events/ |
H A D | firewire_ohci.h | 62 …TP_PROTO(unsigned int card_index, u32 reg, const __le32 *self_id_receive, bool has_be_header_quirk… 63 TP_ARGS(card_index, reg, self_id_receive, has_be_header_quirk), 77 ptr[i] = cond_le32_to_cpu(self_id_receive[i], has_be_header_quirk);
|
/linux/drivers/firewire/ |
H A D | ohci.c | 48 static u32 cond_le32_to_cpu(__le32 value, bool has_be_header_quirk); 873 static u32 cond_le32_to_cpu(__le32 value, bool has_be_header_quirk) in cond_le32_to_cpu() argument 875 return has_be_header_quirk ? (__force __u32)value : le32_to_cpu(value); in cond_le32_to_cpu() 878 static bool has_be_header_quirk(const struct fw_ohci *ohci) in has_be_header_quirk() function 883 static u32 cond_le32_to_cpu(__le32 value, bool has_be_header_quirk __maybe_unused) in cond_le32_to_cpu() 888 static bool has_be_header_quirk(const struct fw_ohci *ohci) in has_be_header_quirk() function 901 p.header[0] = cond_le32_to_cpu(buffer[0], has_be_header_quirk(ohci)); in handle_ar_packet() 902 p.header[1] = cond_le32_to_cpu(buffer[1], has_be_header_quirk(ohci)); in handle_ar_packet() 903 p.header[2] = cond_le32_to_cpu(buffer[2], has_be_header_quirk(ohci)); in handle_ar_packet() 915 p.header[3] = cond_le32_to_cpu(buffer[3], has_be_header_quirk(ohci)); in handle_ar_packet() [all …]
|