@@ -85,25 +85,25 @@ struct spi_engine_program {
85
85
* struct spi_engine_message_state - SPI engine per-message state
86
86
*/
87
87
struct spi_engine_message_state {
88
- /** Instructions for executing this message. */
88
+ /** @p: Instructions for executing this message. */
89
89
struct spi_engine_program * p ;
90
- /** Number of elements in cmd_buf array. */
90
+ /** @cmd_length: Number of elements in cmd_buf array. */
91
91
unsigned cmd_length ;
92
- /** Array of commands not yet written to CMD FIFO. */
92
+ /** @cmd_buf: Array of commands not yet written to CMD FIFO. */
93
93
const uint16_t * cmd_buf ;
94
- /** Next xfer with tx_buf not yet fully written to TX FIFO. */
94
+ /** @tx_xfer: Next xfer with tx_buf not yet fully written to TX FIFO. */
95
95
struct spi_transfer * tx_xfer ;
96
- /** Size of tx_buf in bytes. */
96
+ /** @tx_length: Size of tx_buf in bytes. */
97
97
unsigned int tx_length ;
98
- /** Bytes not yet written to TX FIFO. */
98
+ /** @tx_buf: Bytes not yet written to TX FIFO. */
99
99
const uint8_t * tx_buf ;
100
- /** Next xfer with rx_buf not yet fully written to RX FIFO. */
100
+ /** @rx_xfer: Next xfer with rx_buf not yet fully written to RX FIFO. */
101
101
struct spi_transfer * rx_xfer ;
102
- /** Size of tx_buf in bytes. */
102
+ /** @rx_length: Size of tx_buf in bytes. */
103
103
unsigned int rx_length ;
104
- /** Bytes not yet written to the RX FIFO. */
104
+ /** @rx_buf: Bytes not yet written to the RX FIFO. */
105
105
uint8_t * rx_buf ;
106
- /** ID to correlate SYNC interrupts with this message. */
106
+ /** @sync_id: ID to correlate SYNC interrupts with this message. */
107
107
u8 sync_id ;
108
108
};
109
109
0 commit comments