diff options
Diffstat (limited to 'drivers/gpu/drm/omapdrm/dss/dsi.c')
-rw-r--r-- | drivers/gpu/drm/omapdrm/dss/dsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/omapdrm/dss/dsi.c b/drivers/gpu/drm/omapdrm/dss/dsi.c index 66c4d973e7eb..c07326a46c01 100644 --- a/drivers/gpu/drm/omapdrm/dss/dsi.c +++ b/drivers/gpu/drm/omapdrm/dss/dsi.c | |||
@@ -5523,7 +5523,7 @@ static int dsi_runtime_suspend(struct device *dev) | |||
5523 | /* wait for current handler to finish before turning the DSI off */ | 5523 | /* wait for current handler to finish before turning the DSI off */ |
5524 | synchronize_irq(dsi->irq); | 5524 | synchronize_irq(dsi->irq); |
5525 | 5525 | ||
5526 | dispc_runtime_put(); | 5526 | dispc_runtime_put(dsi->dss->dispc); |
5527 | 5527 | ||
5528 | return 0; | 5528 | return 0; |
5529 | } | 5529 | } |
@@ -5533,7 +5533,7 @@ static int dsi_runtime_resume(struct device *dev) | |||
5533 | struct dsi_data *dsi = dev_get_drvdata(dev); | 5533 | struct dsi_data *dsi = dev_get_drvdata(dev); |
5534 | int r; | 5534 | int r; |
5535 | 5535 | ||
5536 | r = dispc_runtime_get(); | 5536 | r = dispc_runtime_get(dsi->dss->dispc); |
5537 | if (r) | 5537 | if (r) |
5538 | return r; | 5538 | return r; |
5539 | 5539 | ||