Deleted Added
sdiff udiff text old ( 160370 ) new ( 160452 )
full compact
1/* $FreeBSD: head/sys/dev/spibus/spi.h 160452 2006-07-17 21:18:03Z cognet $ */
2
3struct spi_command {
4 void *tx_cmd;
5 uint32_t tx_cmd_sz;
6 void *rx_cmd;
7 uint32_t rx_cmd_sz;
8 void *tx_data;
9 uint32_t tx_data_sz;
10 void *rx_data;
11 uint32_t rx_data_sz;
12};