Lines Matching defs:sid
94 __be16 sid;
312 u16 sid;
329 sid = MCBA_SIDL_EXID_MASK;
331 sid |= (cf->can_id & 0x1ffc0000) >> 13;
333 sid |= (cf->can_id & 0x30000) >> 16;
334 put_unaligned_be16(sid, &usb_msg.sid);
343 &usb_msg.sid);
419 u16 sid;
425 sid = get_unaligned_be16(&msg->sid);
427 if (sid & MCBA_SIDL_EXID_MASK) {
434 cf->can_id |= (sid & 0xffe0) << 13;
436 cf->can_id |= (sid & 3) << 16;
443 cf->can_id = (sid & 0xffe0) >> 5;