has_be_header_quirk
trace_self_id_complete(ohci->card.index, reg, ohci->self_id, has_be_header_quirk(ohci));
quadlet = cond_le32_to_cpu(ohci->self_id[0], has_be_header_quirk(ohci));
u32 id = cond_le32_to_cpu(ohci->self_id[i], has_be_header_quirk(ohci));
u32 id2 = cond_le32_to_cpu(ohci->self_id[i + 1], has_be_header_quirk(ohci));
static u32 cond_le32_to_cpu(__le32 value, bool has_be_header_quirk);
static u32 cond_le32_to_cpu(__le32 value, bool has_be_header_quirk)
return has_be_header_quirk ? (__force __u32)value : le32_to_cpu(value);
static u32 cond_le32_to_cpu(__le32 value, bool has_be_header_quirk __maybe_unused)
p.header[0] = cond_le32_to_cpu(buffer[0], has_be_header_quirk(ohci));
p.header[1] = cond_le32_to_cpu(buffer[1], has_be_header_quirk(ohci));
p.header[2] = cond_le32_to_cpu(buffer[2], has_be_header_quirk(ohci));
p.header[3] = cond_le32_to_cpu(buffer[3], has_be_header_quirk(ohci));
p.header[3] = cond_le32_to_cpu(buffer[3], has_be_header_quirk(ohci));
status = cond_le32_to_cpu(buffer[length], has_be_header_quirk(ohci));
TP_PROTO(unsigned int card_index, u32 reg, const __le32 *self_id_receive, bool has_be_header_quirk),
TP_ARGS(card_index, reg, self_id_receive, has_be_header_quirk),
ptr[i] = cond_le32_to_cpu(self_id_receive[i], has_be_header_quirk);