From patchwork Thu Jun 6 08:13:38 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Ujfalusi X-Patchwork-Id: 2678071 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 63A5DDF23A for ; Thu, 6 Jun 2013 08:14:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757978Ab3FFIOZ (ORCPT ); Thu, 6 Jun 2013 04:14:25 -0400 Received: from devils.ext.ti.com ([198.47.26.153]:37247 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752337Ab3FFIOV (ORCPT ); Thu, 6 Jun 2013 04:14:21 -0400 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id r568DfxW005836; Thu, 6 Jun 2013 03:13:41 -0500 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id r568DfrQ016018; Thu, 6 Jun 2013 03:13:41 -0500 Received: from dlelxv22.itg.ti.com (172.17.1.197) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.2.342.3; Thu, 6 Jun 2013 03:13:41 -0500 Received: from barack.itg.ti.com (h0-70.vpn.ti.com [172.24.0.70]) by dlelxv22.itg.ti.com (8.13.8/8.13.8) with ESMTP id r568DaEX008675; Thu, 6 Jun 2013 03:13:39 -0500 From: Peter Ujfalusi To: Andrew Morton CC: Tony Lindgren , Alessandro Zummo , Thomas Gleixner , , , , Grygorii Strashko , Tomi Valkeinen Subject: [PATCH v3 2/2] RTC: rtc-twl: Cleanup with module_platform_driver() conversion Date: Thu, 6 Jun 2013 10:13:38 +0200 Message-ID: <1370506418-1491-2-git-send-email-peter.ujfalusi@ti.com> X-Mailer: git-send-email 1.8.2.1 In-Reply-To: <1370506418-1491-1-git-send-email-peter.ujfalusi@ti.com> References: <1370506418-1491-1-git-send-email-peter.ujfalusi@ti.com> MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Use module_platform_driver() to register the platform driver. Signed-off-by: Peter Ujfalusi Acked-by: Kevin Hilman --- drivers/rtc/rtc-twl.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/drivers/rtc/rtc-twl.c b/drivers/rtc/rtc-twl.c index c9060e9..e1776fd 100644 --- a/drivers/rtc/rtc-twl.c +++ b/drivers/rtc/rtc-twl.c @@ -614,17 +614,7 @@ static struct platform_driver twl4030rtc_driver = { }, }; -static int __init twl_rtc_init(void) -{ - return platform_driver_register(&twl4030rtc_driver); -} -module_init(twl_rtc_init); - -static void __exit twl_rtc_exit(void) -{ - platform_driver_unregister(&twl4030rtc_driver); -} -module_exit(twl_rtc_exit); +module_platform_driver(twl4030rtc_driver); MODULE_AUTHOR("Texas Instruments, MontaVista Software"); MODULE_LICENSE("GPL");