diff options
author | Mika Westerberg <mika.westerberg@linux.intel.com> | 2013-03-05 05:05:16 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-03-12 14:30:56 -0400 |
commit | c134634077942404a285f6b64bc1ce5932ac22fe (patch) | |
tree | afd97d69a17ee6adae25fe25459cb59c65b75748 /drivers/spi/spi-pxa2xx-pci.c | |
parent | f8043872e79614ae9c5aaf7804e0b0ccb1932ed0 (diff) |
spi/pxa2xx-pci: correct the return value check of pcim_iomap_regions()
The function returns 0 on success and negative errno in case of failure.
Fix this.
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/spi/spi-pxa2xx-pci.c')
-rw-r--r-- | drivers/spi/spi-pxa2xx-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-pxa2xx-pci.c b/drivers/spi/spi-pxa2xx-pci.c index 0a11dcfc631b..74bc18775658 100644 --- a/drivers/spi/spi-pxa2xx-pci.c +++ b/drivers/spi/spi-pxa2xx-pci.c | |||
@@ -22,7 +22,7 @@ static int ce4100_spi_probe(struct pci_dev *dev, | |||
22 | return ret; | 22 | return ret; |
23 | 23 | ||
24 | ret = pcim_iomap_regions(dev, 1 << 0, "PXA2xx SPI"); | 24 | ret = pcim_iomap_regions(dev, 1 << 0, "PXA2xx SPI"); |
25 | if (!ret) | 25 | if (ret) |
26 | return ret; | 26 | return ret; |
27 | 27 | ||
28 | memset(&spi_pdata, 0, sizeof(spi_pdata)); | 28 | memset(&spi_pdata, 0, sizeof(spi_pdata)); |