Skip to content

Commit

Permalink
[media] exynos-gsc: Convert gsc_m2m_resume() from int to void
Browse files Browse the repository at this point in the history
Since gsc_m2m_resume() always returns 0, convert it to a void instead.

[mszyprow: rebased onto v4.9-rc4]

Signed-off-by: Ulf Hansson <[email protected]>
Signed-off-by: Marek Szyprowski <[email protected]>
Tested-by: Javier Martinez Canillas <[email protected]>
Signed-off-by: Sylwester Nawrocki <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
storulf authored and mchehab committed Nov 16, 2016
1 parent d83db90 commit f9fd6ee
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions drivers/media/platform/exynos-gsc/gsc-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,7 @@ static int gsc_m2m_suspend(struct gsc_dev *gsc)
return timeout == 0 ? -EAGAIN : 0;
}

static int gsc_m2m_resume(struct gsc_dev *gsc)
static void gsc_m2m_resume(struct gsc_dev *gsc)
{
struct gsc_ctx *ctx;
unsigned long flags;
Expand All @@ -1036,8 +1036,6 @@ static int gsc_m2m_resume(struct gsc_dev *gsc)

if (test_and_clear_bit(ST_M2M_SUSPENDED, &gsc->state))
gsc_m2m_job_finish(ctx, VB2_BUF_STATE_ERROR);

return 0;
}

static int gsc_probe(struct platform_device *pdev)
Expand Down Expand Up @@ -1159,8 +1157,9 @@ static int gsc_runtime_resume(struct device *dev)

gsc_hw_set_sw_reset(gsc);
gsc_wait_reset(gsc);
gsc_m2m_resume(gsc);

return gsc_m2m_resume(gsc);
return 0;
}

static int gsc_runtime_suspend(struct device *dev)
Expand Down

0 comments on commit f9fd6ee

Please sign in to comment.