diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2013-05-16 00:08:56 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-05-16 13:39:11 -0400 |
commit | 27474d268c20a0e62f71065a043c08f5adb2419d (patch) | |
tree | b71c8cab33d0d9178b6add743bb96a8c53cdf682 | |
parent | f722406faae2d073cc1d01063d1123c35425939e (diff) |
spi: ep93xx: fix error return code in ep93xx_spi_probe()
Fix to return -ENOMEM in the workqueue create error handling
case instead of 0, as done elsewhere in this function.
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r-- | drivers/spi/spi-ep93xx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/spi/spi-ep93xx.c b/drivers/spi/spi-ep93xx.c index d7bac60253c9..5c63e1323160 100644 --- a/drivers/spi/spi-ep93xx.c +++ b/drivers/spi/spi-ep93xx.c | |||
@@ -1104,6 +1104,7 @@ static int ep93xx_spi_probe(struct platform_device *pdev) | |||
1104 | espi->wq = create_singlethread_workqueue("ep93xx_spid"); | 1104 | espi->wq = create_singlethread_workqueue("ep93xx_spid"); |
1105 | if (!espi->wq) { | 1105 | if (!espi->wq) { |
1106 | dev_err(&pdev->dev, "unable to create workqueue\n"); | 1106 | dev_err(&pdev->dev, "unable to create workqueue\n"); |
1107 | error = -ENOMEM; | ||
1107 | goto fail_free_dma; | 1108 | goto fail_free_dma; |
1108 | } | 1109 | } |
1109 | INIT_WORK(&espi->msg_work, ep93xx_spi_work); | 1110 | INIT_WORK(&espi->msg_work, ep93xx_spi_work); |