diff options
author | Jingoo Han <jg1.han@samsung.com> | 2011-04-11 03:22:58 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-04-11 12:38:50 -0400 |
commit | 0d60b281dc7fd2ae7ec6463f916138fd2d182bee (patch) | |
tree | d826070bfc52ebe45b9e972851edf3281e97517f /drivers/video/s3c-fb.c | |
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/s3c-fb.c')
-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) | |||
1549 | return 0; | 1549 | return 0; |
1550 | } | 1550 | } |
1551 | 1551 | ||
1552 | int s3c_fb_runtime_suspend(struct device *dev) | 1552 | static int s3c_fb_runtime_suspend(struct device *dev) |
1553 | { | 1553 | { |
1554 | struct platform_device *pdev = to_platform_device(dev); | 1554 | struct platform_device *pdev = to_platform_device(dev); |
1555 | struct s3c_fb *sfb = platform_get_drvdata(pdev); | 1555 | struct s3c_fb *sfb = platform_get_drvdata(pdev); |
@@ -1569,7 +1569,7 @@ int s3c_fb_runtime_suspend(struct device *dev) | |||
1569 | return 0; | 1569 | return 0; |
1570 | } | 1570 | } |
1571 | 1571 | ||
1572 | int s3c_fb_runtime_resume(struct device *dev) | 1572 | static int s3c_fb_runtime_resume(struct device *dev) |
1573 | { | 1573 | { |
1574 | struct platform_device *pdev = to_platform_device(dev); | 1574 | struct platform_device *pdev = to_platform_device(dev); |
1575 | struct s3c_fb *sfb = platform_get_drvdata(pdev); | 1575 | struct s3c_fb *sfb = platform_get_drvdata(pdev); |