diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-08-28 04:41:41 -0400 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2012-09-12 23:38:09 -0400 |
commit | 9e1355e7d9c0dac39b9bc4e146a49d379f43ba42 (patch) | |
tree | 3f7903f047fb689f8e36b86bff02c57bb8b580b8 /drivers/gpu/drm/exynos | |
parent | 254d4d111ee159a39d4afb30d9515036d1e0b027 (diff) |
drm/exynos: Make g2d_pm_ops static
Fixes the following warning:
drivers/gpu/drm/exynos/exynos_drm_g2d.c:897:1: warning:
symbol 'g2d_pm_ops' was not declared. Should it be static?
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_g2d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_g2d.c b/drivers/gpu/drm/exynos/exynos_drm_g2d.c index 6adfa4e03265..1065e90d0919 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_g2d.c +++ b/drivers/gpu/drm/exynos/exynos_drm_g2d.c | |||
@@ -894,7 +894,7 @@ static int g2d_resume(struct device *dev) | |||
894 | } | 894 | } |
895 | #endif | 895 | #endif |
896 | 896 | ||
897 | SIMPLE_DEV_PM_OPS(g2d_pm_ops, g2d_suspend, g2d_resume); | 897 | static SIMPLE_DEV_PM_OPS(g2d_pm_ops, g2d_suspend, g2d_resume); |
898 | 898 | ||
899 | struct platform_driver g2d_driver = { | 899 | struct platform_driver g2d_driver = { |
900 | .probe = g2d_probe, | 900 | .probe = g2d_probe, |