summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Green <andy.green@linaro.org>2012-03-14 16:06:23 +0800
committerAndy Green <andy.green@linaro.org>2012-03-14 16:06:23 +0800
commitf0af847cf479d10ab3e6e68067f65d9c64a74249 (patch)
tree56d3533013c504b9c702c47094897fb38c868ff8
parent7ba32aafb831f339775d599deac76b5e810ce2cf (diff)
uplevel pdev is a pointer not composed any moretilt-3.3-omap5-eng-11VINCENT/5432-SGX-8VINCENT/5432-SGX-7
Signed-off-by: Andy Green <andy.green@linaro.org>
-rw-r--r--drivers/media/video/omap4iss/iss.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/omap4iss/iss.c b/drivers/media/video/omap4iss/iss.c
index 4f0acecd568..ffa1b0aa745 100644
--- a/drivers/media/video/omap4iss/iss.c
+++ b/drivers/media/video/omap4iss/iss.c
@@ -783,7 +783,7 @@ struct iss_device *omap4iss_get(struct iss_device *iss)
else
iss->has_context = 1;
- pm_runtime_get_sync(&iss->dev);
+ pm_runtime_get_sync(iss->dev);
iss_enable_interrupts(iss);
@@ -814,7 +814,7 @@ void omap4iss_put(struct iss_device *iss)
iss_disable_clocks(iss);
}
mutex_unlock(&iss->iss_mutex);
- pm_runtime_put(&iss->dev);
+ pm_runtime_put(iss->dev);
}
static int iss_map_mem_resource(struct platform_device *pdev,