mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-01 00:18:15 +01:00
13 lines
189 B
C
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;
|
|
};
|