Home
last modified time | relevance | path

Searched refs:cip_header (Results 1 – 2 of 2) sorted by relevance

/Linux-v4.19/sound/firewire/
Damdtp-stream-trace.h17 …TP_PROTO(const struct amdtp_stream *s, u32 cycles, u32 *cip_header, unsigned int payload_length, u…
18 TP_ARGS(s, cycles, cip_header, payload_length, index),
38 __entry->cip_header0 = cip_header[0];
39 __entry->cip_header1 = cip_header[1];
61 …TP_PROTO(const struct amdtp_stream *s, u32 cycles, __be32 *cip_header, unsigned int payload_length…
62 TP_ARGS(s, cycles, cip_header, payload_length, index),
82 __entry->cip_header0 = be32_to_cpu(cip_header[0]);
83 __entry->cip_header1 = be32_to_cpu(cip_header[1]);
Damdtp-stream.c520 u32 cip_header[2]; in handle_in_packet() local
529 cip_header[0] = be32_to_cpu(buffer[0]); in handle_in_packet()
530 cip_header[1] = be32_to_cpu(buffer[1]); in handle_in_packet()
532 trace_in_packet(s, cycle, cip_header, payload_length, index); in handle_in_packet()
538 if ((((cip_header[0] & CIP_EOH_MASK) == CIP_EOH) || in handle_in_packet()
539 ((cip_header[1] & CIP_EOH_MASK) != CIP_EOH)) && in handle_in_packet()
543 cip_header[0], cip_header[1]); in handle_in_packet()
550 sph = (cip_header[0] & CIP_SPH_MASK) >> CIP_SPH_SHIFT; in handle_in_packet()
551 fmt = (cip_header[1] & CIP_FMT_MASK) >> CIP_FMT_SHIFT; in handle_in_packet()
555 cip_header[0], cip_header[1]); in handle_in_packet()
[all …]