Commit c51202d3 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] s5p_cec: get rid of an unused var

drivers/staging/media/s5p-cec/s5p_cec.c: In function 's5p_cec_adap_enable':
drivers/staging/media/s5p-cec/s5p_cec.c:42:6: warning: variable 'ret' set but not used [-Wunused-but-set-variable]
  int ret;
      ^~~
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 78fc853b
......@@ -39,10 +39,9 @@ MODULE_PARM_DESC(debug, "debug level (0-2)");
static int s5p_cec_adap_enable(struct cec_adapter *adap, bool enable)
{
struct s5p_cec_dev *cec = adap->priv;
int ret;
if (enable) {
ret = pm_runtime_get_sync(cec->dev);
pm_runtime_get_sync(cec->dev);
s5p_cec_reset(cec);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment