linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/5] spi: match var type to return type of wait_for_completion
@ 2015-02-02  8:30 Nicholas Mc Guire
  2015-02-02  8:30 ` [PATCH 2/5] spi: mxs: cleanup wait_for_completion return handling Nicholas Mc Guire
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Nicholas Mc Guire @ 2015-02-02  8:30 UTC (permalink / raw)
  To: Mark Brown; +Cc: linux-spi, linux-kernel, Nicholas Mc Guire

From: Nicholas Mc Guire <der.herr@hofr.at>

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: Nicholas Mc Guire <der.herr@hofr.at>
---

The return type of wait_for_completion_timeout is unsigned long not
int. This patch resolves the type missmatch by changing the type
to unsigned long.

This patch was only compile tested with x86_64_defconfig + CONFIG_SPI=y

Patch is against 3.19.0-rc6 -next-20150130

 drivers/spi/spi.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index b9fb711..c64a3e5 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -784,7 +784,7 @@ static int spi_transfer_one_message(struct spi_master *master,
 	struct spi_transfer *xfer;
 	bool keep_cs = false;
 	int ret = 0;
-	int ms = 1;
+	unsigned long ms = 1;
 
 	spi_set_cs(msg->spi, true);
 
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2015-02-04 20:53 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-02  8:30 [PATCH 1/5] spi: match var type to return type of wait_for_completion Nicholas Mc Guire
2015-02-02  8:30 ` [PATCH 2/5] spi: mxs: cleanup wait_for_completion return handling Nicholas Mc Guire
2015-02-02 12:11   ` Mark Brown
2015-02-02  8:30 ` [PATCH 3/5] spi: sh-msiof: " Nicholas Mc Guire
2015-02-04 20:53   ` Mark Brown
2015-02-02  8:30 ` [PATCH 4/5] spi: spi-imx: cleanup wait_for_completion handling Nicholas Mc Guire
2015-02-04 20:53   ` Mark Brown
2015-02-02  8:30 ` [PATCH 5/5] spi: ti-qspi: cleanup wait_for_completion return handling Nicholas Mc Guire
2015-02-02 12:16   ` Mark Brown
2015-02-04 20:52 ` [PATCH 1/5] spi: match var type to return type of wait_for_completion Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).