Source code for the Trusted Boot Module.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <spi.h>
|
|
|
|
int spi_tx_rx(struct spi_dev *dev, void *rx_buf, size_t rx_len,
|
|
const void *tx_buf, size_t tx_len)
|
|
{
|
|
if (!dev)
|
|
return -1;
|
|
|
|
return dev->ops->tx_rx(dev, rx_buf, rx_len, tx_buf, tx_len);
|
|
}
|
|
|