From patchwork Wed Oct 10 18:38:59 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Srinivas KANDAGATLA X-Patchwork-Id: 1575481 Return-Path: X-Original-To: patchwork-linux-fbdev@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id D60C93FE36 for ; Wed, 10 Oct 2012 18:40:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752927Ab2JJSkh (ORCPT ); Wed, 10 Oct 2012 14:40:37 -0400 Received: from eu1sys200aog107.obsmtp.com ([207.126.144.123]:56757 "EHLO eu1sys200aog107.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756453Ab2JJSkg (ORCPT ); Wed, 10 Oct 2012 14:40:36 -0400 Received: from beta.dmz-eu.st.com ([164.129.1.35]) (using TLSv1) by eu1sys200aob107.postini.com ([207.126.147.11]) with SMTP ID DSNKUHXBDJcI6uG7RXWJ6UR3gVKr+ElXzHkl@postini.com; Wed, 10 Oct 2012 18:40:36 UTC Received: from zeta.dmz-eu.st.com (zeta.dmz-eu.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 14C481DE; Wed, 10 Oct 2012 18:40:10 +0000 (GMT) Received: from mail7.sgp.st.com (mail7.sgp.st.com [164.129.223.81]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id A0038265F; Wed, 10 Oct 2012 18:40:10 +0000 (GMT) Received: from localhost (king.bri.st.com [10.65.51.147]) by mail7.sgp.st.com (MOS 4.3.3-GA) with ESMTP id APB71360 (AUTH srinivak); Wed, 10 Oct 2012 20:40:09 +0200 From: Srinivas KANDAGATLA To: FlorianSchandinat@gmx.de Cc: srinivas.kandagatla@st.com, source@embeddedalley.com, klessard@sunrisetelecom.com, c.pellegrin@exadron.com, linux-fbdev@vger.kernel.org, pjones@redhat.com, hennerich@blackfin.uclinux.org, jkosina@suse.cz, jayakumar.lkml@gmail.com, paul.gortmaker@windriver.com, hsweeten@visionengravers.com, kristoffer@gaisler.com, lars@metafoo.de Subject: [PATCH 3.6.0- 09/13] video/ep93xx_fb: use module_platform_driver macro Date: Wed, 10 Oct 2012 19:38:59 +0100 Message-Id: <1349894339-9495-1-git-send-email-srinivas.kandagatla@st.com> X-Mailer: git-send-email 1.7.0.4 Sender: linux-fbdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org From: Srinivas Kandagatla This patch removes some code duplication by using module_platform_driver. Signed-off-by: Srinivas Kandagatla --- drivers/video/ep93xx-fb.c | 14 +------------- 1 files changed, 1 insertions(+), 13 deletions(-) diff --git a/drivers/video/ep93xx-fb.c b/drivers/video/ep93xx-fb.c index f2c092d..cfebe9f 100644 --- a/drivers/video/ep93xx-fb.c +++ b/drivers/video/ep93xx-fb.c @@ -631,19 +631,7 @@ static struct platform_driver ep93xxfb_driver = { .owner = THIS_MODULE, }, }; - -static int __devinit ep93xxfb_init(void) -{ - return platform_driver_register(&ep93xxfb_driver); -} - -static void __exit ep93xxfb_exit(void) -{ - platform_driver_unregister(&ep93xxfb_driver); -} - -module_init(ep93xxfb_init); -module_exit(ep93xxfb_exit); +module_platform_driver(ep93xxfb_driver); MODULE_DESCRIPTION("EP93XX Framebuffer Driver"); MODULE_ALIAS("platform:ep93xx-fb");