dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Jingoo Han 2011-04-11 07:22:58 +00:00 committed by Paul Mundt
parent 4263a2f1da
commit 0d60b281dc
1 changed files with 2 additions and 2 deletions

View File

@ -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);