Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 287305
b: refs/heads/master
c: 0eaf9f5
h: refs/heads/master
i:
  287303: 0dfcbd2
v: v3
  • Loading branch information
Tomi Valkeinen committed Jan 26, 2012
1 parent f2e17f8 commit a04e6c0
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f7f5ef0afdcca69fb02ded1763c28eca74e6b54d
refs/heads/master: 0eaf9f52e94f756147dbfe1faf1f77a02378dbf9
4 changes: 2 additions & 2 deletions trunk/drivers/video/fsl-diu-fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1432,7 +1432,7 @@ static int fsl_diu_suspend(struct platform_device *ofdev, pm_message_t state)
struct fsl_diu_data *data;

data = dev_get_drvdata(&ofdev->dev);
disable_lcdc(data->fsl_diu_info);
disable_lcdc(data->fsl_diu_info[0]);

return 0;
}
Expand All @@ -1442,7 +1442,7 @@ static int fsl_diu_resume(struct platform_device *ofdev)
struct fsl_diu_data *data;

data = dev_get_drvdata(&ofdev->dev);
enable_lcdc(data->fsl_diu_info);
enable_lcdc(data->fsl_diu_info[0]);

return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/omap2/dss/dispc.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ void dispc_runtime_put(void)

DSSDBG("dispc_runtime_put\n");

r = pm_runtime_put(&dispc.pdev->dev);
r = pm_runtime_put_sync(&dispc.pdev->dev);
WARN_ON(r < 0);
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/omap2/dss/dsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ void dsi_runtime_put(struct platform_device *dsidev)

DSSDBG("dsi_runtime_put\n");

r = pm_runtime_put(&dsi->pdev->dev);
r = pm_runtime_put_sync(&dsi->pdev->dev);
WARN_ON(r < 0);
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/omap2/dss/dss.c
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ void dss_runtime_put(void)

DSSDBG("dss_runtime_put\n");

r = pm_runtime_put(&dss.pdev->dev);
r = pm_runtime_put_sync(&dss.pdev->dev);
WARN_ON(r < 0);
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/omap2/dss/hdmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ static void hdmi_runtime_put(void)

DSSDBG("hdmi_runtime_put\n");

r = pm_runtime_put(&hdmi.pdev->dev);
r = pm_runtime_put_sync(&hdmi.pdev->dev);
WARN_ON(r < 0);
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/omap2/dss/rfbi.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ static void rfbi_runtime_put(void)

DSSDBG("rfbi_runtime_put\n");

r = pm_runtime_put(&rfbi.pdev->dev);
r = pm_runtime_put_sync(&rfbi.pdev->dev);
WARN_ON(r < 0);
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/omap2/dss/venc.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ static void venc_runtime_put(void)

DSSDBG("venc_runtime_put\n");

r = pm_runtime_put(&venc.pdev->dev);
r = pm_runtime_put_sync(&venc.pdev->dev);
WARN_ON(r < 0);
}

Expand Down

0 comments on commit a04e6c0

Please sign in to comment.