1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00
freebsd/sys/dev/spibus/spi.h
Olivier Houchard 4e9e16ed7e Fix comments.
2006-07-17 21:18:03 +00:00

13 lines
189 B
C

/* $FreeBSD$ */
struct spi_command {
void *tx_cmd;
uint32_t tx_cmd_sz;
void *rx_cmd;
uint32_t rx_cmd_sz;
void *tx_data;
uint32_t tx_data_sz;
void *rx_data;
uint32_t rx_data_sz;
};