提交 701a8de6 编写于 作者: U Ulf Hansson 提交者: Mauro Carvalho Chehab

[media] exynos-gsc: Simplify system PM

It's not needed to keep a local flag about the current system PM state.
Let's just remove that code and the corresponding debug print.

[mszyprow: rebased onto v4.9-rc4]
Signed-off-by: NUlf Hansson <ulf.hansson@linaro.org>
Signed-off-by: NMarek Szyprowski <m.szyprowski@samsung.com>
Tested-by: NJavier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: NSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: NMauro Carvalho Chehab <mchehab@s-opensource.com>
上级 7ebcb3e8
...@@ -1182,20 +1182,6 @@ static int gsc_runtime_suspend(struct device *dev) ...@@ -1182,20 +1182,6 @@ static int gsc_runtime_suspend(struct device *dev)
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int gsc_resume(struct device *dev) static int gsc_resume(struct device *dev)
{ {
struct gsc_dev *gsc = dev_get_drvdata(dev);
unsigned long flags;
pr_debug("gsc%d: state: 0x%lx", gsc->id, gsc->state);
/* Do not resume if the device was idle before system suspend */
spin_lock_irqsave(&gsc->slock, flags);
if (!test_and_clear_bit(ST_SUSPEND, &gsc->state) ||
!gsc_m2m_opened(gsc)) {
spin_unlock_irqrestore(&gsc->slock, flags);
return 0;
}
spin_unlock_irqrestore(&gsc->slock, flags);
if (!pm_runtime_suspended(dev)) if (!pm_runtime_suspended(dev))
return gsc_runtime_resume(dev); return gsc_runtime_resume(dev);
...@@ -1204,13 +1190,6 @@ static int gsc_resume(struct device *dev) ...@@ -1204,13 +1190,6 @@ static int gsc_resume(struct device *dev)
static int gsc_suspend(struct device *dev) static int gsc_suspend(struct device *dev)
{ {
struct gsc_dev *gsc = dev_get_drvdata(dev);
pr_debug("gsc%d: state: 0x%lx", gsc->id, gsc->state);
if (test_and_set_bit(ST_SUSPEND, &gsc->state))
return 0;
if (!pm_runtime_suspended(dev)) if (!pm_runtime_suspended(dev))
return gsc_runtime_suspend(dev); return gsc_runtime_suspend(dev);
......
...@@ -48,9 +48,6 @@ ...@@ -48,9 +48,6 @@
#define GSC_CTX_ABORT (1 << 7) #define GSC_CTX_ABORT (1 << 7)
enum gsc_dev_flags { enum gsc_dev_flags {
/* for global */
ST_SUSPEND,
/* for m2m node */ /* for m2m node */
ST_M2M_OPEN, ST_M2M_OPEN,
ST_M2M_RUN, ST_M2M_RUN,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册