Message ID | 1422865837-10357-1-git-send-email-hofrat@osadl.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 682a71b28406a53bdc05c4c0d48443af72f1298e |
Headers | show |
On Mon, Feb 02, 2015 at 03:30:32AM -0500, Nicholas Mc Guire wrote: > 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. applied, thanks.
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);