From patchwork Mon Apr 11 07:22:58 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jingoo Han X-Patchwork-Id: 697701 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p3B7tOJ2021300 for ; Mon, 11 Apr 2011 07:55:40 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754403Ab1DKHzZ (ORCPT ); Mon, 11 Apr 2011 03:55:25 -0400 Received: from ganesha.gnumonks.org ([213.95.27.120]:40531 "EHLO ganesha.gnumonks.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754248Ab1DKHzZ (ORCPT ); Mon, 11 Apr 2011 03:55:25 -0400 Received: from uucp by ganesha.gnumonks.org with local-bsmtp (Exim 4.69) (envelope-from ) id 1Q9Bxx-0000Ro-V8; Mon, 11 Apr 2011 09:55:21 +0200 Received: from [12.23.102.184] (helo=starstone.dsn.sec.samsung.com) by jackpot.kr.gnumonks.org with esmtp (Exim 4.69) (envelope-from ) id 1Q9B8f-0004le-Um; Mon, 11 Apr 2011 16:02:21 +0900 From: Jingoo Han To: linux-fbdev@vger.kernel.org Cc: Ben Dooks , Jingoo Han Subject: [PATCH] video: s3c-fb: make runtime pm functions static Date: Mon, 11 Apr 2011 16:22:58 +0900 Message-Id: <1302506578-21676-1-git-send-email-jg1.han@samsung.com> X-Mailer: git-send-email 1.7.1 Sender: linux-fbdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Mon, 11 Apr 2011 07:55:40 +0000 (UTC) This patch makes runtime pm functions static. Signed-off-by: Jingoo Han --- 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 6817d18..832c7e5 100644 --- a/drivers/video/s3c-fb.c +++ b/drivers/video/s3c-fb.c @@ -1547,7 +1547,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); @@ -1567,7 +1567,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);