diff options
author | Jingoo Han <jg1.han@samsung.com> | 2011-04-11 07:22:58 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-04-11 09:38:50 -0700 |
commit | 0d60b281dc7fd2ae7ec6463f916138fd2d182bee (patch) | |
tree | d826070bfc52ebe45b9e972851edf3281e97517f /drivers/video | |
parent | 4263a2f1dad8c8e7ce2352a0cbc882c2b0c044a9 (diff) |
video: s3c-fb: make runtime pm functions static
This patch makes runtime pm functions static.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/s3c-fb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/s3c-fb.c b/drivers/video/s3c-fb.c index 3b6cdcac8f1a..2d075f0684d9 100644 --- a/drivers/video/s3c-fb.c +++ b/drivers/video/s3c-fb.c @@ -1549,7 +1549,7 @@ static int s3c_fb_resume(struct device *dev) return 0; } -int s3c_fb_runtime_suspend(struct device *dev) +static int s3c_fb_runtime_suspend(struct device *dev) { struct platform_device *pdev = to_platform_device(dev); struct s3c_fb *sfb = platform_get_drvdata(pdev); @@ -1569,7 +1569,7 @@ int s3c_fb_runtime_suspend(struct device *dev) return 0; } -int s3c_fb_runtime_resume(struct device *dev) +static int s3c_fb_runtime_resume(struct device *dev) { struct platform_device *pdev = to_platform_device(dev); struct s3c_fb *sfb = platform_get_drvdata(pdev); |