diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2013-07-17 11:34:48 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-07-17 13:19:44 -0400 |
commit | 9ca1273bb9d35c81bfb73215556bf794a73a2d83 (patch) | |
tree | ffabe4afdc7ef533f10091b2640c2b0bda0eef92 /drivers/spi/spi-xilinx.c | |
parent | 7b3b7432ae7848a269671921393148ff1aae3881 (diff) |
spi/xilinx: signedness issue checking platform_get_irq()
In xilinx_spi_probe() we use xspi->irq to store negative error codes so
it has to be signed. We weren't going to use the upper bit any way so
this is fine.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/spi/spi-xilinx.c')
-rw-r--r-- | drivers/spi/spi-xilinx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-xilinx.c b/drivers/spi/spi-xilinx.c index e5d3716da21a..dec7e71a833c 100644 --- a/drivers/spi/spi-xilinx.c +++ b/drivers/spi/spi-xilinx.c | |||
@@ -82,7 +82,7 @@ struct xilinx_spi { | |||
82 | struct completion done; | 82 | struct completion done; |
83 | void __iomem *regs; /* virt. address of the control registers */ | 83 | void __iomem *regs; /* virt. address of the control registers */ |
84 | 84 | ||
85 | u32 irq; | 85 | int irq; |
86 | 86 | ||
87 | u8 *rx_ptr; /* pointer in the Tx buffer */ | 87 | u8 *rx_ptr; /* pointer in the Tx buffer */ |
88 | const u8 *tx_ptr; /* pointer in the Rx buffer */ | 88 | const u8 *tx_ptr; /* pointer in the Rx buffer */ |