diff options
author | Philipp Zabel <p.zabel@pengutronix.de> | 2015-01-06 09:48:20 -0500 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2015-01-14 09:18:51 -0500 |
commit | 90ebd0eb065168995ab400266934bf5ed498c5ae (patch) | |
tree | 47a910350dd1ea92a5435209c38c9bbda095ebb1 /drivers/i2c | |
parent | 393cc1ceb96648f842eb81f41f8f56d1eba9b637 (diff) |
i2c: imx: remove unused return value assignments
The ret variable is set and never used in the error path of i2c_imx_dma_request.
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Acked-by: Fugang Duan <B38611@freescale.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-imx.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c index 2be7d9d6d1b3..cb7c4b28b624 100644 --- a/drivers/i2c/busses/i2c-imx.c +++ b/drivers/i2c/busses/i2c-imx.c | |||
@@ -295,7 +295,6 @@ static void i2c_imx_dma_request(struct imx_i2c_struct *i2c_imx, | |||
295 | dma->chan_tx = dma_request_slave_channel(dev, "tx"); | 295 | dma->chan_tx = dma_request_slave_channel(dev, "tx"); |
296 | if (!dma->chan_tx) { | 296 | if (!dma->chan_tx) { |
297 | dev_dbg(dev, "can't request DMA tx channel\n"); | 297 | dev_dbg(dev, "can't request DMA tx channel\n"); |
298 | ret = -ENODEV; | ||
299 | goto fail_al; | 298 | goto fail_al; |
300 | } | 299 | } |
301 | 300 | ||
@@ -313,7 +312,6 @@ static void i2c_imx_dma_request(struct imx_i2c_struct *i2c_imx, | |||
313 | dma->chan_rx = dma_request_slave_channel(dev, "rx"); | 312 | dma->chan_rx = dma_request_slave_channel(dev, "rx"); |
314 | if (!dma->chan_rx) { | 313 | if (!dma->chan_rx) { |
315 | dev_dbg(dev, "can't request DMA rx channel\n"); | 314 | dev_dbg(dev, "can't request DMA rx channel\n"); |
316 | ret = -ENODEV; | ||
317 | goto fail_tx; | 315 | goto fail_tx; |
318 | } | 316 | } |
319 | 317 | ||