From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754521Ab1JKKyt (ORCPT ); Tue, 11 Oct 2011 06:54:49 -0400 Received: from mprc.pku.edu.cn ([162.105.203.9]:45868 "EHLO mprc.pku.edu.cn" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752117Ab1JKKys (ORCPT ); Tue, 11 Oct 2011 06:54:48 -0400 X-Greylist: delayed 1816 seconds by postgrey-1.27 at vger.kernel.org; Tue, 11 Oct 2011 06:54:48 EDT Subject: Re: [PATCH] rtc: rtc-puv3: Add __devinit and __devexit markers for probe and remove From: Guan Xuetao Reply-To: gxt@mprc.pku.edu.cn To: Axel Lin Cc: linux-kernel@vger.kernel.org, Alessandro Zummo , rtc-linux@googlegroups.com In-Reply-To: <1317824987.2674.1.camel@phoenix> References: <1317824987.2674.1.camel@phoenix> Content-Type: text/plain; charset="UTF-8" Organization: MPRC, PKU Date: Tue, 11 Oct 2011 18:25:32 +0800 Message-ID: <1318328732.1938.14.camel@epip-laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.32.2 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Thanks Axel. Signed-off-by: Guan Xuetao Guan Xuetao On Wed, 2011-10-05 at 22:29 +0800, Axel Lin wrote: > Signed-off-by: Axel Lin > --- > drivers/rtc/rtc-puv3.c | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/rtc/rtc-puv3.c b/drivers/rtc/rtc-puv3.c > index b3eba3c..e4b6880 100644 > --- a/drivers/rtc/rtc-puv3.c > +++ b/drivers/rtc/rtc-puv3.c > @@ -220,7 +220,7 @@ static void puv3_rtc_enable(struct platform_device *pdev, int en) > } > } > > -static int puv3_rtc_remove(struct platform_device *dev) > +static int __devexit puv3_rtc_remove(struct platform_device *dev) > { > struct rtc_device *rtc = platform_get_drvdata(dev); > > @@ -236,7 +236,7 @@ static int puv3_rtc_remove(struct platform_device *dev) > return 0; > } > > -static int puv3_rtc_probe(struct platform_device *pdev) > +static int __devinit puv3_rtc_probe(struct platform_device *pdev) > { > struct rtc_device *rtc; > struct resource *res;