From patchwork Wed Oct 10 18:38:21 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Srinivas KANDAGATLA X-Patchwork-Id: 1575521 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 381044025F for ; Wed, 10 Oct 2012 18:40:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751560Ab2JJSkz (ORCPT ); Wed, 10 Oct 2012 14:40:55 -0400 Received: from eu1sys200aog109.obsmtp.com ([207.126.144.127]:52901 "EHLO eu1sys200aog109.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752813Ab2JJSky (ORCPT ); Wed, 10 Oct 2012 14:40:54 -0400 Received: from beta.dmz-eu.st.com ([164.129.1.35]) (using TLSv1) by eu1sys200aob109.postini.com ([207.126.147.11]) with SMTP ID DSNKUHXA5mJtyJZY7ZhZLiBefWpUIpKlcoCU@postini.com; Wed, 10 Oct 2012 18:40:54 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 A48241DD; Wed, 10 Oct 2012 18:39:32 +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 2DCEA265E; Wed, 10 Oct 2012 18:39:32 +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 APB71316 (AUTH srinivak); Wed, 10 Oct 2012 20:39:31 +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- 04/13] video/bfin-lq035q1: use module_platform_driver macro Date: Wed, 10 Oct 2012 19:38:21 +0100 Message-Id: <1349894301-9326-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/bfin-lq035q1-fb.c | 13 +------------ 1 files changed, 1 insertions(+), 12 deletions(-) diff --git a/drivers/video/bfin-lq035q1-fb.c b/drivers/video/bfin-lq035q1-fb.c index 353c02f..092ca6b 100644 --- a/drivers/video/bfin-lq035q1-fb.c +++ b/drivers/video/bfin-lq035q1-fb.c @@ -852,18 +852,7 @@ static struct platform_driver bfin_lq035q1_driver = { #endif }, }; - -static int __init bfin_lq035q1_driver_init(void) -{ - return platform_driver_register(&bfin_lq035q1_driver); -} -module_init(bfin_lq035q1_driver_init); - -static void __exit bfin_lq035q1_driver_cleanup(void) -{ - platform_driver_unregister(&bfin_lq035q1_driver); -} -module_exit(bfin_lq035q1_driver_cleanup); +module_platform_driver(bfin_lq035q1_driver); MODULE_DESCRIPTION("Blackfin TFT LCD Driver"); MODULE_LICENSE("GPL");