diff options
author | Mark Brown <broonie@linaro.org> | 2014-02-12 20:31:26 +0000 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-12 20:38:20 +0000 |
commit | 513273538a6c10dba1170ecdee5c2da15acecdb5 (patch) | |
tree | 8aae08673c9572f44cbceee6e24b633725397227 /drivers/spi/spi.c | |
parent | 6ad45a27cbe343ec8d7888e5edf6335499a4b555 (diff) |
spi: Make max_tx and max_rx the same type
Prevents spurious compiler warnings.
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/spi/spi.c')
-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)) { |