spi: Trivial warning fix
authorShubhrajyoti D <shubhrajyoti@ti.com>
Mon, 27 Feb 2012 13:59:05 +0000 (19:29 +0530)
committerGrant Likely <grant.likely@secretlab.ca>
Fri, 9 Mar 2012 17:56:10 +0000 (10:56 -0700)
The loop count i traverses for ntrans which is unsigned
so make the loop count i also unsigned.

Fix the below warning
In file included from drivers/spi/spi-omap2-mcspi.c:38:
include/linux/spi/spi.h: In function 'spi_message_alloc':
include/linux/spi/spi.h:556: warning: comparison between signed and unsigned integer expressions

Cc: Vitaly Wool <vwool@ru.mvista.com>
Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
include/linux/spi/spi.h

index f9e30a5b35435769ce0a998fb0ff42f31b320ea4..98679b061b6382cbdffd0d979eb5e1e7dea61ea5 100644 (file)
@@ -600,7 +600,7 @@ static inline struct spi_message *spi_message_alloc(unsigned ntrans, gfp_t flags
                        + ntrans * sizeof(struct spi_transfer),
                        flags);
        if (m) {
-               int i;
+               unsigned i;
                struct spi_transfer *t = (struct spi_transfer *)(m + 1);
 
                INIT_LIST_HEAD(&m->transfers);
This page took 0.028488 seconds and 5 git commands to generate.