Lines Matching defs:byte
195 u8 cfg0; /* Target configuration byte 0 */
197 u8 cfg2; /* Target configuration byte 2 */
198 u8 cfg3; /* Target configuration byte 3 */
1857 * We have transferred a single byte (PIO mode?) and need to update
1859 * entry to either point to next byte in the current sg entry, or of
1970 * The counter always decrement by one for every SCSI byte transfer.
1985 "data_out_phase0: Discard 1 byte (0x%02x)\n",
2147 I just assume it's on a 4-byte boundary */
2155 u8 byte;
2156 byte = DC395x_read8(acb, TRM_S1040_SCSI_FIFO);
2157 *virt++ = byte;
2160 printk(" %02x", byte);
2178 /* Read the last byte ... */
2180 u8 byte = DC395x_read8(acb, TRM_S1040_SCSI_FIFO);
2182 *virt++ = byte;
2185 printk(" %02x", byte);
2476 } else if (*msgbuf >= 0x20 && *msgbuf <= 0x2f) /* two byte messages */
3861 * trms1040_set_data - store a single byte in the eeprom
3863 * Called from write all to write a single byte into the SSEEPROM
3868 * @byte: bytes to write
3870 static void trms1040_set_data(unsigned long io_port, u8 addr, u8 byte)
3879 for (i = 0; i < 8; i++, byte <<= 1) {
3881 if (byte & 0x80) /* Start from bit 7 */
3954 * trms1040_get_data - get a single byte from the eeprom
3956 * Called from read all to read a single byte into the SSEEPROM
3962 * Returns the byte read.