Skip to content

Commit

Permalink
video: s3c-fb: make runtime pm functions static
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jingoo Han authored and Paul Mundt committed Apr 11, 2011
1 parent 4263a2f commit 0d60b28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/video/s3c-fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit 0d60b28

Please sign in to comment.