From: Marek Vasut <marek.vasut@gmail.com>
To: Axel Lin <axel.lin@gmail.com>
Cc: linux-kernel@vger.kernel.org,
Jonathan McDowell <noodles@earth.li>,
Cory Maccarrone <darkstar6262@gmail.com>,
Laurent Gonzalez <palmte.linux@free.fr>,
Tomi Valkeinen <tomi.valkeinen@ti.com>,
Florian Tobias Schandinat <FlorianSchandinat@gmx.de>,
linux-fbdev@vger.kernel.org, linux-omap@vger.kernel.org
Subject: Re: [PATCH 2/3] video: omap: convert drivers/video/omap/* to use module_platform_driver()
Date: Fri, 09 Dec 2011 08:24:29 +0000 [thread overview]
Message-ID: <201112090924.29551.marek.vasut@gmail.com> (raw)
In-Reply-To: <1323395996.3740.6.camel@phoenix>
> This patch converts the drivers in drivers/video/omap/* to use the
> module_platform_driver() macro which makes the code smaller and a bit
> simpler.
>
> Cc: Jonathan McDowell <noodles@earth.li>
> Cc: Cory Maccarrone <darkstar6262@gmail.com>
> Cc: Laurent Gonzalez <palmte.linux@free.fr>
> Cc: Marek Vasut <marek.vasut@gmail.com>
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
> ---
> drivers/video/omap/lcd_ams_delta.c | 13 +------------
> drivers/video/omap/lcd_h3.c | 14 +-------------
> drivers/video/omap/lcd_htcherald.c | 14 +-------------
> drivers/video/omap/lcd_inn1510.c | 14 +-------------
> drivers/video/omap/lcd_inn1610.c | 14 +-------------
> drivers/video/omap/lcd_osk.c | 14 +-------------
> drivers/video/omap/lcd_palmte.c | 14 +-------------
> drivers/video/omap/lcd_palmtt.c | 13 +------------
> drivers/video/omap/lcd_palmz71.c | 13 +------------
> 9 files changed, 9 insertions(+), 114 deletions(-)
>
> diff --git a/drivers/video/omap/lcd_ams_delta.c
> b/drivers/video/omap/lcd_ams_delta.c index eb50a95..0fdd6f6 100644
> --- a/drivers/video/omap/lcd_ams_delta.c
> +++ b/drivers/video/omap/lcd_ams_delta.c
> @@ -209,15 +209,4 @@ static struct platform_driver ams_delta_panel_driver > { },
> };
>
> -static int __init ams_delta_panel_drv_init(void)
> -{
> - return platform_driver_register(&ams_delta_panel_driver);
> -}
> -
> -static void __exit ams_delta_panel_drv_cleanup(void)
> -{
> - platform_driver_unregister(&ams_delta_panel_driver);
> -}
> -
> -module_init(ams_delta_panel_drv_init);
> -module_exit(ams_delta_panel_drv_cleanup);
> +module_platform_driver(ams_delta_panel_driver);
> diff --git a/drivers/video/omap/lcd_h3.c b/drivers/video/omap/lcd_h3.c
> index baec34e..49bdeca 100644
> --- a/drivers/video/omap/lcd_h3.c
> +++ b/drivers/video/omap/lcd_h3.c
> @@ -124,16 +124,4 @@ static struct platform_driver h3_panel_driver = {
> },
> };
>
> -static int __init h3_panel_drv_init(void)
> -{
> - return platform_driver_register(&h3_panel_driver);
> -}
> -
> -static void __exit h3_panel_drv_cleanup(void)
> -{
> - platform_driver_unregister(&h3_panel_driver);
> -}
> -
> -module_init(h3_panel_drv_init);
> -module_exit(h3_panel_drv_cleanup);
> -
> +module_platform_driver(h3_panel_driver);
> diff --git a/drivers/video/omap/lcd_htcherald.c
> b/drivers/video/omap/lcd_htcherald.c index b1a022f..20f4778 100644
> --- a/drivers/video/omap/lcd_htcherald.c
> +++ b/drivers/video/omap/lcd_htcherald.c
> @@ -115,16 +115,4 @@ static struct platform_driver htcherald_panel_driver > { },
> };
>
> -static int __init htcherald_panel_drv_init(void)
> -{
> - return platform_driver_register(&htcherald_panel_driver);
> -}
> -
> -static void __exit htcherald_panel_drv_cleanup(void)
> -{
> - platform_driver_unregister(&htcherald_panel_driver);
> -}
> -
> -module_init(htcherald_panel_drv_init);
> -module_exit(htcherald_panel_drv_cleanup);
> -
> +module_platform_driver(htcherald_panel_driver);
> diff --git a/drivers/video/omap/lcd_inn1510.c
> b/drivers/video/omap/lcd_inn1510.c index d129946..b38b1dd 100644
> --- a/drivers/video/omap/lcd_inn1510.c
> +++ b/drivers/video/omap/lcd_inn1510.c
> @@ -109,16 +109,4 @@ static struct platform_driver
> innovator1510_panel_driver = { },
> };
>
> -static int __init innovator1510_panel_drv_init(void)
> -{
> - return platform_driver_register(&innovator1510_panel_driver);
> -}
> -
> -static void __exit innovator1510_panel_drv_cleanup(void)
> -{
> - platform_driver_unregister(&innovator1510_panel_driver);
> -}
> -
> -module_init(innovator1510_panel_drv_init);
> -module_exit(innovator1510_panel_drv_cleanup);
> -
> +module_platform_driver(innovator1510_panel_driver);
> diff --git a/drivers/video/omap/lcd_inn1610.c
> b/drivers/video/omap/lcd_inn1610.c index a95756b..7e8bd8e 100644
> --- a/drivers/video/omap/lcd_inn1610.c
> +++ b/drivers/video/omap/lcd_inn1610.c
> @@ -133,16 +133,4 @@ static struct platform_driver
> innovator1610_panel_driver = { },
> };
>
> -static int __init innovator1610_panel_drv_init(void)
> -{
> - return platform_driver_register(&innovator1610_panel_driver);
> -}
> -
> -static void __exit innovator1610_panel_drv_cleanup(void)
> -{
> - platform_driver_unregister(&innovator1610_panel_driver);
> -}
> -
> -module_init(innovator1610_panel_drv_init);
> -module_exit(innovator1610_panel_drv_cleanup);
> -
> +module_platform_driver(innovator1610_panel_driver);
> diff --git a/drivers/video/omap/lcd_osk.c b/drivers/video/omap/lcd_osk.c
> index b985997..5914220 100644
> --- a/drivers/video/omap/lcd_osk.c
> +++ b/drivers/video/omap/lcd_osk.c
> @@ -127,16 +127,4 @@ static struct platform_driver osk_panel_driver = {
> },
> };
>
> -static int __init osk_panel_drv_init(void)
> -{
> - return platform_driver_register(&osk_panel_driver);
> -}
> -
> -static void __exit osk_panel_drv_cleanup(void)
> -{
> - platform_driver_unregister(&osk_panel_driver);
> -}
> -
> -module_init(osk_panel_drv_init);
> -module_exit(osk_panel_drv_cleanup);
> -
> +module_platform_driver(osk_panel_driver);
> diff --git a/drivers/video/omap/lcd_palmte.c
> b/drivers/video/omap/lcd_palmte.c index d79f436..88c31eb 100644
> --- a/drivers/video/omap/lcd_palmte.c
> +++ b/drivers/video/omap/lcd_palmte.c
> @@ -108,16 +108,4 @@ static struct platform_driver palmte_panel_driver = {
> },
> };
>
> -static int __init palmte_panel_drv_init(void)
> -{
> - return platform_driver_register(&palmte_panel_driver);
> -}
> -
> -static void __exit palmte_panel_drv_cleanup(void)
> -{
> - platform_driver_unregister(&palmte_panel_driver);
> -}
> -
> -module_init(palmte_panel_drv_init);
> -module_exit(palmte_panel_drv_cleanup);
> -
> +module_platform_driver(palmte_panel_driver);
> diff --git a/drivers/video/omap/lcd_palmtt.c
> b/drivers/video/omap/lcd_palmtt.c index c2e96a7..aaf3c8b 100644
> --- a/drivers/video/omap/lcd_palmtt.c
> +++ b/drivers/video/omap/lcd_palmtt.c
> @@ -113,15 +113,4 @@ static struct platform_driver palmtt_panel_driver = {
> },
> };
>
> -static int __init palmtt_panel_drv_init(void)
> -{
> - return platform_driver_register(&palmtt_panel_driver);
> -}
> -
> -static void __exit palmtt_panel_drv_cleanup(void)
> -{
> - platform_driver_unregister(&palmtt_panel_driver);
> -}
> -
> -module_init(palmtt_panel_drv_init);
> -module_exit(palmtt_panel_drv_cleanup);
> +module_platform_driver(palmtt_panel_driver);
> diff --git a/drivers/video/omap/lcd_palmz71.c
> b/drivers/video/omap/lcd_palmz71.c index 1ab4847..3b7d8aa 100644
> --- a/drivers/video/omap/lcd_palmz71.c
> +++ b/drivers/video/omap/lcd_palmz71.c
> @@ -109,15 +109,4 @@ static struct platform_driver palmz71_panel_driver = {
> },
> };
>
> -static int __init palmz71_panel_drv_init(void)
> -{
> - return platform_driver_register(&palmz71_panel_driver);
> -}
> -
> -static void __exit palmz71_panel_drv_cleanup(void)
> -{
> - platform_driver_unregister(&palmz71_panel_driver);
> -}
> -
> -module_init(palmz71_panel_drv_init);
> -module_exit(palmz71_panel_drv_cleanup);
> +module_platform_driver(palmz71_panel_driver);
PalmTT and PalmZ71, please add my
Acked-by: Marek Vasut <marek.vasut@gmail.com>
next prev parent reply other threads:[~2011-12-09 8:24 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-09 1:57 [PATCH 1/3] video: convert mbxfb to use module_platform_driver() Axel Lin
2011-12-09 1:59 ` [PATCH 2/3] video: omap: convert drivers/video/omap/* to use Axel Lin
2011-12-09 8:24 ` Marek Vasut [this message]
2011-12-09 22:00 ` Jonathan McDowell
2011-12-12 10:46 ` Tomi Valkeinen
2011-12-09 2:01 ` [PATCH 3/3] video: pnx4008: convert drivers/video/pnx4008/* " Axel Lin
2011-12-19 23:15 ` [PATCH 3/3] video: pnx4008: convert drivers/video/pnx4008/* to Florian Tobias Schandinat
2011-12-19 23:14 ` [PATCH 1/3] video: convert mbxfb to use module_platform_driver() Florian Tobias Schandinat
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=201112090924.29551.marek.vasut@gmail.com \
--to=marek.vasut@gmail.com \
--cc=FlorianSchandinat@gmx.de \
--cc=axel.lin@gmail.com \
--cc=darkstar6262@gmail.com \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=noodles@earth.li \
--cc=palmte.linux@free.fr \
--cc=tomi.valkeinen@ti.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).