Lines Matching refs:canfd_frame
409 The struct canfd_frame is defined in include/linux/can.h:
413 struct canfd_frame {
422 The struct canfd_frame and the existing struct can_frame have the can_id,
425 When the content of a struct can_frame is copied into a struct canfd_frame
428 When introducing the struct canfd_frame it turned out that the data length
431 the easy handling of the length information the canfd_frame.len element
432 contains a plain length value from 0 .. 64. So both canfd_frame.len and
444 #define CANFD_MTU (sizeof(struct canfd_frame)) == 72 => CAN FD frame
637 [ remember: CANFD_MTU == sizeof(struct canfd_frame) ]
639 struct canfd_frame cfd;
662 provided CAN FD structure. Note that the canfd_frame.flags data field is
668 To build a CAN FD aware application use struct canfd_frame as basic CAN
881 The CAN frames following the bcm_msg_head are struct canfd_frame's
979 bcm_msg_head are defined as struct canfd_frame:
985 struct canfd_frame frame[5];
995 expected in the first 64 bit of the struct canfd_frame data section.
1113 dev->mtu = CANFD_MTU; /* sizeof(struct canfd_frame) -> CAN FD interface */
1115 The struct can_frame or struct canfd_frame is the payload of each socket
1368 canfd_frame.len for userspace applications and inside the Linux network
1379 MTU = 72 (CANFD_MTU) => sizeof(struct canfd_frame) => CAN FD capable device