diff options
author | Sourav Poddar <sourav.poddar@ti.com> | 2014-03-10 16:00:42 +0530 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-03-10 11:10:19 +0000 |
commit | 9304f51e5f3e1365860968bce168d904f3e31bd3 (patch) | |
tree | a53ee5be571a71826b34d1b62e01f081328f1b8f /drivers/spi | |
parent | 38dbfb59d1175ef458d006556061adeaa8751b72 (diff) | |
download | op-kernel-dev-9304f51e5f3e1365860968bce168d904f3e31bd3.zip op-kernel-dev-9304f51e5f3e1365860968bce168d904f3e31bd3.tar.gz |
spi/ti-qspi: Fix return from mmap path
mmap resource requirement is only for memory mapped operations.
If the user does not populate mmap resource, dont call return,
instead we go on for normal spi mode operations.
Signed-off-by: Sourav Poddar <sourav.poddar@ti.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-ti-qspi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/spi/spi-ti-qspi.c b/drivers/spi/spi-ti-qspi.c index 3d09265..66a4029 100644 --- a/drivers/spi/spi-ti-qspi.c +++ b/drivers/spi/spi-ti-qspi.c @@ -461,7 +461,6 @@ static int ti_qspi_probe(struct platform_device *pdev) if (res_mmap == NULL) { dev_err(&pdev->dev, "memory mapped resource not required\n"); - return -ENODEV; } } |