From patchwork Thu Jul 7 18:56:57 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hartley Sweeten X-Patchwork-Id: 953862 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p67IvW4f012284 for ; Thu, 7 Jul 2011 18:57:32 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753983Ab1GGS5b (ORCPT ); Thu, 7 Jul 2011 14:57:31 -0400 Received: from mail131.messagelabs.com ([216.82.242.99]:61995 "EHLO mail131.messagelabs.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753482Ab1GGS5a (ORCPT ); Thu, 7 Jul 2011 14:57:30 -0400 X-VirusChecked: Checked X-Env-Sender: hartleys@visionengravers.com X-Msg-Ref: server-6.tower-131.messagelabs.com!1310064899!9262118!144 X-StarScan-Version: 6.2.17; banners=-,-,- X-Originating-IP: [216.166.12.178] Received: (qmail 18934 invoked from network); 7 Jul 2011 18:57:29 -0000 Received: from out001.collaborationhost.net (HELO out001.collaborationhost.net) (216.166.12.178) by server-6.tower-131.messagelabs.com with RC4-SHA encrypted SMTP; 7 Jul 2011 18:57:29 -0000 Received: from etch.local (10.2.3.210) by smtp.collaborationhost.net (10.2.0.191) with Microsoft SMTP Server (TLS) id 8.2.176.0; Thu, 7 Jul 2011 13:57:28 -0500 From: H Hartley Sweeten To: Linux Kernel Subject: [PATCH] backlight/ep93xx_bl: fix section mismatch Date: Thu, 7 Jul 2011 11:56:57 -0700 User-Agent: KMail/1.9.9 CC: , , MIME-Version: 1.0 Content-Disposition: inline Message-ID: <201107071156.58113.hartleys@visionengravers.com> 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 (demeter2.kernel.org [140.211.167.43]); Thu, 07 Jul 2011 18:57:32 +0000 (UTC) Signed-off-by: H Hartley Sweeten Cc: Richard Purdie Cc: Paul Mundt --- -- To unsubscribe from this list: send the line "unsubscribe linux-fbdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/video/backlight/ep93xx_bl.c b/drivers/video/backlight/ep93xx_bl.c index 9f1e389..91dce60 100644 --- a/drivers/video/backlight/ep93xx_bl.c +++ b/drivers/video/backlight/ep93xx_bl.c @@ -65,7 +65,7 @@ static const struct backlight_ops ep93xxbl_ops = { .get_brightness = ep93xxbl_get_brightness, }; -static int __init ep93xxbl_probe(struct platform_device *dev) +static int __devinit ep93xxbl_probe(struct platform_device *dev) { struct ep93xxbl *ep93xxbl; struct backlight_device *bl; @@ -103,7 +103,7 @@ static int __init ep93xxbl_probe(struct platform_device *dev) return 0; } -static int ep93xxbl_remove(struct platform_device *dev) +static int __devexit ep93xxbl_remove(struct platform_device *dev) { struct backlight_device *bl = platform_get_drvdata(dev);