Lines Matching defs:slot
1173 u32 *slot;
1194 slot = dma->rx.buf + rd;
1195 eff = slot[0] & GRCAN_MSG_IDE;
1196 rtr = slot[0] & GRCAN_MSG_RTR;
1198 cf->can_id = ((slot[0] & GRCAN_MSG_EID)
1202 cf->can_id = ((slot[0] & GRCAN_MSG_BID)
1205 cf->can_dlc = get_can_dlc((slot[1] & GRCAN_MSG_DLC)
1213 cf->data[i] = (u8)(slot[j] >> shift);
1331 * regs->txwr - the next slot for the driver to put data to be sent
1332 * regs->txrd - the next slot for the device to read data
1333 * priv->eskbp - the next slot for the driver to call can_put_echo_skb for
1352 u32 *slot;
1377 slot = dma->tx.buf + txwr;
1402 slot[0] = (eff ? GRCAN_MSG_IDE : 0) | (rtr ? GRCAN_MSG_RTR : 0) | tmp;
1404 slot[1] = ((dlc << GRCAN_MSG_DLC_BIT) & GRCAN_MSG_DLC);
1405 slot[2] = 0;
1406 slot[3] = 0;
1410 slot[j] |= cf->data[i] << shift;