Commit 682a71b2 authored by Nicholas Mc Guire's avatar Nicholas Mc Guire Committed by Mark Brown

spi: match var type to return type of wait_for_completion

return type of wait_for_completion_timeout is unsigned long not int, this
patch changes the type of m from int to unsigned long.
Signed-off-by: default avatarNicholas Mc Guire <der.herr@hofr.at>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 97bf6af1
...@@ -788,7 +788,7 @@ static int spi_transfer_one_message(struct spi_master *master, ...@@ -788,7 +788,7 @@ static int spi_transfer_one_message(struct spi_master *master,
struct spi_transfer *xfer; struct spi_transfer *xfer;
bool keep_cs = false; bool keep_cs = false;
int ret = 0; int ret = 0;
int ms = 1; unsigned long ms = 1;
spi_set_cs(msg->spi, true); spi_set_cs(msg->spi, true);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment