aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi-coldfire-qspi.c
diff options
context:
space:
mode:
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>2013-05-16 01:11:32 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-05-16 14:21:50 -0400
commit4a577f5275e948f96ea1a9bbce5d994ec6db618b (patch)
treec668f6925c6a00c7d2bc279d0dcd0a99e6784a3b /drivers/spi/spi-coldfire-qspi.c
parentf722406faae2d073cc1d01063d1123c35425939e (diff)
spi: coldfire-qspi: fix error return code in mcfqspi_probe()
If pdev->dev.platform_data is not set, mcfqspi_probe() will return 0 and release all the resources, in this case, we should return a error code instead of 0. This patch fix to return -ENOENT in this case and move the check for pdev->dev.platform_data to the begin of this function. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/spi/spi-coldfire-qspi.c')
-rw-r--r--drivers/spi/spi-coldfire-qspi.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/spi/spi-coldfire-qspi.c b/drivers/spi/spi-coldfire-qspi.c
index 7b5cc9e4e94d..f99943bf3519 100644
--- a/drivers/spi/spi-coldfire-qspi.c
+++ b/drivers/spi/spi-coldfire-qspi.c
@@ -408,6 +408,12 @@ static int mcfqspi_probe(struct platform_device *pdev)
408 struct mcfqspi_platform_data *pdata; 408 struct mcfqspi_platform_data *pdata;
409 int status; 409 int status;
410 410
411 pdata = pdev->dev.platform_data;
412 if (!pdata) {
413 dev_dbg(&pdev->dev, "platform data is missing\n");
414 return -ENOENT;
415 }
416
411 master = spi_alloc_master(&pdev->dev, sizeof(*mcfqspi)); 417 master = spi_alloc_master(&pdev->dev, sizeof(*mcfqspi));
412 if (master == NULL) { 418 if (master == NULL) {
413 dev_dbg(&pdev->dev, "spi_alloc_master failed\n"); 419 dev_dbg(&pdev->dev, "spi_alloc_master failed\n");
@@ -458,11 +464,6 @@ static int mcfqspi_probe(struct platform_device *pdev)
458 } 464 }
459 clk_enable(mcfqspi->clk); 465 clk_enable(mcfqspi->clk);
460 466
461 pdata = pdev->dev.platform_data;
462 if (!pdata) {
463 dev_dbg(&pdev->dev, "platform data is missing\n");
464 goto fail4;
465 }
466 master->bus_num = pdata->bus_num; 467 master->bus_num = pdata->bus_num;
467 master->num_chipselect = pdata->num_chipselect; 468 master->num_chipselect = pdata->num_chipselect;
468 469