From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jyri Sarha Subject: Re: [PATCH] OMAPDSS: hdmi: Remove __exit qualifier from hdmi_uninit_output() Date: Tue, 2 Dec 2014 22:18:45 +0200 Message-ID: <547E1EA5.30608@ti.com> References: <1417536771-12907-1-git-send-email-jsarha@ti.com> Mime-Version: 1.0 Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from devils.ext.ti.com ([198.47.26.153]:43264 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933038AbaLBUSy (ORCPT ); Tue, 2 Dec 2014 15:18:54 -0500 In-Reply-To: <1417536771-12907-1-git-send-email-jsarha@ti.com> Sender: linux-pm-owner@vger.kernel.org List-Id: linux-pm@vger.kernel.org To: linux-pm@vger.kernel.org Cc: rjw@rjwysocki.net, pavel@ucw.cz, t-kristo@ti.com, tomi.valkeinen@ti.com Please ignore this patch. It has no relevance to linux-pm and escaped by accident. Sorry, Jyri On 12/02/2014 06:12 PM, Jyri Sarha wrote: > Remove __exit qualifier from hdmi_uninit_output() because it is used > also in omapdss_hdmihw_probe(). > > Signed-off-by: Jyri Sarha > --- > drivers/video/fbdev/omap2/dss/hdmi4.c | 2 +- > drivers/video/fbdev/omap2/dss/hdmi5.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/video/fbdev/omap2/dss/hdmi4.c b/drivers/video/fbdev/omap2/dss/hdmi4.c > index e76cc5f..f1a02bf 100644 > --- a/drivers/video/fbdev/omap2/dss/hdmi4.c > +++ b/drivers/video/fbdev/omap2/dss/hdmi4.c > @@ -510,7 +510,7 @@ static void hdmi_init_output(struct platform_device *pdev) > omapdss_register_output(out); > } > > -static void __exit hdmi_uninit_output(struct platform_device *pdev) > +static void hdmi_uninit_output(struct platform_device *pdev) > { > struct omap_dss_device *out = &hdmi.output; > > diff --git a/drivers/video/fbdev/omap2/dss/hdmi5.c b/drivers/video/fbdev/omap2/dss/hdmi5.c > index cbfb282..d9d0d78 100644 > --- a/drivers/video/fbdev/omap2/dss/hdmi5.c > +++ b/drivers/video/fbdev/omap2/dss/hdmi5.c > @@ -538,7 +538,7 @@ static void hdmi_init_output(struct platform_device *pdev) > omapdss_register_output(out); > } > > -static void __exit hdmi_uninit_output(struct platform_device *pdev) > +static void hdmi_uninit_output(struct platform_device *pdev) > { > struct omap_dss_device *out = &hdmi.output; > >