Lines Matching defs:sid
95 __be16 sid;
318 u16 sid;
335 sid = MCBA_SIDL_EXID_MASK;
337 sid |= (cf->can_id & 0x1ffc0000) >> 13;
339 sid |= (cf->can_id & 0x30000) >> 16;
340 put_unaligned_be16(sid, &usb_msg.sid);
349 &usb_msg.sid);
425 u16 sid;
431 sid = get_unaligned_be16(&msg->sid);
433 if (sid & MCBA_SIDL_EXID_MASK) {
440 cf->can_id |= (sid & 0xffe0) << 13;
442 cf->can_id |= (sid & 3) << 16;
449 cf->can_id = (sid & 0xffe0) >> 5;