Skip to content

Commit

Permalink
[media] coda: Check the return value from clk_prepare_enable()
Browse files Browse the repository at this point in the history
clk_prepare_enable() may fail, so let's check its return value and propagate it
in the case of error.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Kamil Debski <k.debski@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
  • Loading branch information
Fabio Estevam authored and Mauro Carvalho Chehab committed Aug 24, 2013
1 parent f82bc20 commit 79830db
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions drivers/media/platform/coda.c
Original file line number Diff line number Diff line change
Expand Up @@ -2406,8 +2406,14 @@ static int coda_open(struct file *file)
ctx->reg_idx = idx;
}

clk_prepare_enable(dev->clk_per);
clk_prepare_enable(dev->clk_ahb);
ret = clk_prepare_enable(dev->clk_per);
if (ret)
goto err_clk_per;

ret = clk_prepare_enable(dev->clk_ahb);
if (ret)
goto err_clk_ahb;

set_default_params(ctx);
ctx->m2m_ctx = v4l2_m2m_ctx_init(dev->m2m_dev, ctx,
&coda_queue_init);
Expand Down Expand Up @@ -2465,7 +2471,9 @@ static int coda_open(struct file *file)
v4l2_m2m_ctx_release(ctx->m2m_ctx);
err_ctx_init:
clk_disable_unprepare(dev->clk_ahb);
err_clk_ahb:
clk_disable_unprepare(dev->clk_per);
err_clk_per:
v4l2_fh_del(&ctx->fh);
v4l2_fh_exit(&ctx->fh);
clear_bit(ctx->idx, &dev->instance_mask);
Expand Down Expand Up @@ -2873,10 +2881,15 @@ static int coda_hw_init(struct coda_dev *dev)
u16 product, major, minor, release;
u32 data;
u16 *p;
int i;
int i, ret;

ret = clk_prepare_enable(dev->clk_per);
if (ret)
return ret;

clk_prepare_enable(dev->clk_per);
clk_prepare_enable(dev->clk_ahb);
ret = clk_prepare_enable(dev->clk_ahb);
if (ret)
goto err_clk_ahb;

/*
* Copy the first CODA_ISRAM_SIZE in the internal SRAM.
Expand Down Expand Up @@ -2985,6 +2998,10 @@ static int coda_hw_init(struct coda_dev *dev)
}

return 0;

err_clk_ahb:
clk_disable_unprepare(dev->clk_per);
return ret;
}

static void coda_fw_callback(const struct firmware *fw, void *context)
Expand Down

0 comments on commit 79830db

Please sign in to comment.