diff options
author | Mark Brown <broonie@linaro.org> | 2014-02-12 21:31:26 +0100 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-12 21:38:20 +0100 |
commit | 513273538a6c10dba1170ecdee5c2da15acecdb5 (patch) | |
tree | 8aae08673c9572f44cbceee6e24b633725397227 | |
parent | spi: Make core DMA mapping functions generate scatterlists (diff) | |
download | linux-513273538a6c10dba1170ecdee5c2da15acecdb5.tar.xz linux-513273538a6c10dba1170ecdee5c2da15acecdb5.zip |
spi: Make max_tx and max_rx the same type
Prevents spurious compiler warnings.
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | drivers/spi/spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index 49313dd0a144..f3fb1acf9ac1 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c @@ -644,7 +644,7 @@ static int spi_map_msg(struct spi_master *master, struct spi_message *msg) struct device *tx_dev, *rx_dev; struct spi_transfer *xfer; void *tmp; - size_t max_tx, max_rx; + unsigned int max_tx, max_rx; int ret; if (master->flags & (SPI_MASTER_MUST_RX | SPI_MASTER_MUST_TX)) { |