All of lore.kernel.org
 help / color / mirror / Atom feed
From: Imre Deak <imre.deak@nokia.com>
To: ext Peter Huewe <PeterHuewe@gmx.de>
Cc: Jiri Kosina <trivial@kernel.org>,
	"kernel-janitors@vger.kernel.org"
	<kernel-janitors@vger.kernel.org>,
	Tony Lindgren <tony@atomide.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Krzysztof Helt <krzysztof.h1@wp.pl>,
	Jonathan McDowell <noodles@earth.li>,
	Arnaud Patard <arnaud.patard@rtp-net.org>,
	Mike Wege <ext-mike.wege@nokia.com>,
	"Doyu Hiroshi (Nokia-D/Helsinki)" <hiroshi.doyu@nokia.com>,
	"linux-fbdev-devel@lists.sourceforge.net" 
	<linux-fbdev-devel@lists.sourceforge.net>,
	"linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] video/omap:  adding __init/__exit macros to various drivers
Date: Tue, 29 Sep 2009 12:18:53 +0300	[thread overview]
Message-ID: <20090929091853.GC9536@localhost> (raw)
In-Reply-To: <200909290318.07309.PeterHuewe@gmx.de>

On Tue, Sep 29, 2009 at 03:18:06AM +0200, ext Peter Huewe wrote:
> From: Peter Huewe <peterhuewe@gmx.de>
> 
> Trivial patch which adds the __init/__exit macros to the module_init/
> module_exit functions of the following drivers in media/omap:
> drivers/video/omap/lcd_ams_delta.c
> drivers/video/omap/lcd_mipid.c
> 
> Please have a look at the small patch and either pull it through
> your tree, or please ack' it so Jiri can pull it through the trivial tree.
> 
> linux version v2.6.32-rc1 - linus git tree, Di 29. Sep 01:10:18 CEST 2009
> 
> Signed-off-by: Peter Huewe <peterhuewe@gmx.de>

Acked-by: Imre Deak <imre.deak@nokia.com>

> ---
> diff --git a/drivers/video/omap/lcd_ams_delta.c b/drivers/video/omap/lcd_ams_delta.c
> index 1f74399..319a9a2 100644
> --- a/drivers/video/omap/lcd_ams_delta.c
> +++ b/drivers/video/omap/lcd_ams_delta.c
> @@ -123,12 +123,12 @@ struct platform_driver ams_delta_panel_driver = {
>  	},
>  };
>  
> -static int ams_delta_panel_drv_init(void)
> +static int __init ams_delta_panel_drv_init(void)
>  {
>  	return platform_driver_register(&ams_delta_panel_driver);
>  }
>  
> -static void ams_delta_panel_drv_cleanup(void)
> +static void __exit ams_delta_panel_drv_cleanup(void)
>  {
>  	platform_driver_unregister(&ams_delta_panel_driver);
>  }
> diff --git a/drivers/video/omap/lcd_mipid.c b/drivers/video/omap/lcd_mipid.c
> index 918ee89..d88a792 100644
> --- a/drivers/video/omap/lcd_mipid.c
> +++ b/drivers/video/omap/lcd_mipid.c
> @@ -607,7 +607,7 @@ static struct spi_driver mipid_spi_driver = {
>  	.remove	= __devexit_p(mipid_spi_remove),
>  };
>  
> -static int mipid_drv_init(void)
> +static int __init mipid_drv_init(void)
>  {
>  	spi_register_driver(&mipid_spi_driver);
>  
> @@ -615,7 +615,7 @@ static int mipid_drv_init(void)
>  }
>  module_init(mipid_drv_init);
>  
> -static void mipid_drv_cleanup(void)
> +static void __exit mipid_drv_cleanup(void)
>  {
>  	spi_unregister_driver(&mipid_spi_driver);
>  }

WARNING: multiple messages have this Message-ID (diff)
From: Imre Deak <imre.deak@nokia.com>
To: ext Peter Huewe <PeterHuewe@gmx.de>
Cc: Jiri Kosina <trivial@kernel.org>,
	"kernel-janitors@vger.kernel.org"
	<kernel-janitors@vger.kernel.org>,
	Tony Lindgren <tony@atomide.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Krzysztof Helt <krzysztof.h1@wp.pl>,
	Jonathan McDowell <noodles@earth.li>,
	Arnaud Patard <arnaud.patard@rtp-net.org>,
	Mike Wege <ext-mike.wege@nokia.com>,
	"Doyu Hiroshi (Nokia-D/Helsinki)" <hiroshi.doyu@nokia.com>,
	"linux-fbdev-devel@lists.sourceforge.net"
	<linux-fbdev-devel@lists.sourceforge.net>,
	"linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] video/omap:  adding __init/__exit macros to various
Date: Tue, 29 Sep 2009 09:18:53 +0000	[thread overview]
Message-ID: <20090929091853.GC9536@localhost> (raw)
In-Reply-To: <200909290318.07309.PeterHuewe@gmx.de>

On Tue, Sep 29, 2009 at 03:18:06AM +0200, ext Peter Huewe wrote:
> From: Peter Huewe <peterhuewe@gmx.de>
> 
> Trivial patch which adds the __init/__exit macros to the module_init/
> module_exit functions of the following drivers in media/omap:
> drivers/video/omap/lcd_ams_delta.c
> drivers/video/omap/lcd_mipid.c
> 
> Please have a look at the small patch and either pull it through
> your tree, or please ack' it so Jiri can pull it through the trivial tree.
> 
> linux version v2.6.32-rc1 - linus git tree, Di 29. Sep 01:10:18 CEST 2009
> 
> Signed-off-by: Peter Huewe <peterhuewe@gmx.de>

Acked-by: Imre Deak <imre.deak@nokia.com>

> ---
> diff --git a/drivers/video/omap/lcd_ams_delta.c b/drivers/video/omap/lcd_ams_delta.c
> index 1f74399..319a9a2 100644
> --- a/drivers/video/omap/lcd_ams_delta.c
> +++ b/drivers/video/omap/lcd_ams_delta.c
> @@ -123,12 +123,12 @@ struct platform_driver ams_delta_panel_driver = {
>  	},
>  };
>  
> -static int ams_delta_panel_drv_init(void)
> +static int __init ams_delta_panel_drv_init(void)
>  {
>  	return platform_driver_register(&ams_delta_panel_driver);
>  }
>  
> -static void ams_delta_panel_drv_cleanup(void)
> +static void __exit ams_delta_panel_drv_cleanup(void)
>  {
>  	platform_driver_unregister(&ams_delta_panel_driver);
>  }
> diff --git a/drivers/video/omap/lcd_mipid.c b/drivers/video/omap/lcd_mipid.c
> index 918ee89..d88a792 100644
> --- a/drivers/video/omap/lcd_mipid.c
> +++ b/drivers/video/omap/lcd_mipid.c
> @@ -607,7 +607,7 @@ static struct spi_driver mipid_spi_driver = {
>  	.remove	= __devexit_p(mipid_spi_remove),
>  };
>  
> -static int mipid_drv_init(void)
> +static int __init mipid_drv_init(void)
>  {
>  	spi_register_driver(&mipid_spi_driver);
>  
> @@ -615,7 +615,7 @@ static int mipid_drv_init(void)
>  }
>  module_init(mipid_drv_init);
>  
> -static void mipid_drv_cleanup(void)
> +static void __exit mipid_drv_cleanup(void)
>  {
>  	spi_unregister_driver(&mipid_spi_driver);
>  }

  reply	other threads:[~2009-09-29  9:20 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-29  1:18 [PATCH] video/omap: adding __init/__exit macros to various drivers Peter Huewe
2009-09-29  1:18 ` Peter Huewe
2009-09-29  9:18 ` Imre Deak [this message]
2009-09-29  9:18   ` Imre Deak
2009-09-29  9:18   ` [PATCH] video/omap: adding __init/__exit macros to various Imre Deak
2009-09-29 12:07   ` [PATCH] video/omap: adding __init/__exit macros to various drivers Jiri Kosina
2009-09-29 12:07     ` Jiri Kosina
2009-09-29 12:07     ` [PATCH] video/omap: adding __init/__exit macros to various Jiri Kosina

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090929091853.GC9536@localhost \
    --to=imre.deak@nokia.com \
    --cc=PeterHuewe@gmx.de \
    --cc=akpm@linux-foundation.org \
    --cc=arnaud.patard@rtp-net.org \
    --cc=ext-mike.wege@nokia.com \
    --cc=hiroshi.doyu@nokia.com \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=krzysztof.h1@wp.pl \
    --cc=linux-fbdev-devel@lists.sourceforge.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=noodles@earth.li \
    --cc=tony@atomide.com \
    --cc=trivial@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.