From patchwork Wed Oct 10 18:39:18 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Srinivas KANDAGATLA X-Patchwork-Id: 1575511 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 1D48D3FE36 for ; Wed, 10 Oct 2012 18:40:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756916Ab2JJSky (ORCPT ); Wed, 10 Oct 2012 14:40:54 -0400 Received: from eu1sys200aog115.obsmtp.com ([207.126.144.139]:37802 "EHLO eu1sys200aog115.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751560Ab2JJSky (ORCPT ); Wed, 10 Oct 2012 14:40:54 -0400 Received: from beta.dmz-eu.st.com ([164.129.1.35]) (using TLSv1) by eu1sys200aob115.postini.com ([207.126.147.11]) with SMTP ID DSNKUHXBH1IvO7N2EC/bytBaxWpH3QGhgZgH@postini.com; Wed, 10 Oct 2012 18:40:53 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 C967F1DA; Wed, 10 Oct 2012 18:40:29 +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 56A40265F; Wed, 10 Oct 2012 18:40:29 +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 APB71391 (AUTH srinivak); Wed, 10 Oct 2012 20:40:28 +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- 11/13] video/hecubafb: use module_platform_driver macro Date: Wed, 10 Oct 2012 19:39:18 +0100 Message-Id: <1349894358-9578-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/hecubafb.c | 14 +------------- 1 files changed, 1 insertions(+), 13 deletions(-) diff --git a/drivers/video/hecubafb.c b/drivers/video/hecubafb.c index 614251a..12021ff 100644 --- a/drivers/video/hecubafb.c +++ b/drivers/video/hecubafb.c @@ -305,19 +305,7 @@ static struct platform_driver hecubafb_driver = { .name = "hecubafb", }, }; - -static int __init hecubafb_init(void) -{ - return platform_driver_register(&hecubafb_driver); -} - -static void __exit hecubafb_exit(void) -{ - platform_driver_unregister(&hecubafb_driver); -} - -module_init(hecubafb_init); -module_exit(hecubafb_exit); +module_platform_driver(hecubafb_driver); MODULE_DESCRIPTION("fbdev driver for Hecuba/Apollo controller"); MODULE_AUTHOR("Jaya Kumar");