Lines Matching defs:byte
180 u8 cfg0; /* Target configuration byte 0 */
182 u8 cfg2; /* Target configuration byte 2 */
183 u8 cfg3; /* Target configuration byte 3 */
1834 * We have transferred a single byte (PIO mode?) and need to update
1836 * entry to either point to next byte in the current sg entry, or of
1947 * The counter always decrement by one for every SCSI byte transfer.
1962 "data_out_phase0: Discard 1 byte (0x%02x)\n",
2124 I just assume it's on a 4-byte boundary */
2132 u8 byte;
2133 byte = DC395x_read8(acb, TRM_S1040_SCSI_FIFO);
2134 *virt++ = byte;
2137 printk(" %02x", byte);
2155 /* Read the last byte ... */
2157 u8 byte = DC395x_read8(acb, TRM_S1040_SCSI_FIFO);
2159 *virt++ = byte;
2162 printk(" %02x", byte);
2452 } else if (*msgbuf >= 0x20 && *msgbuf <= 0x2f) /* two byte messages */
3815 * trms1040_set_data - store a single byte in the eeprom
3817 * Called from write all to write a single byte into the SSEEPROM
3822 * @byte: bytes to write
3824 static void trms1040_set_data(unsigned long io_port, u8 addr, u8 byte)
3833 for (i = 0; i < 8; i++, byte <<= 1) {
3835 if (byte & 0x80) /* Start from bit 7 */
3908 * trms1040_get_data - get a single byte from the eeprom
3910 * Called from read all to read a single byte into the SSEEPROM
3916 * Returns the byte read.