Re: [PATCH v3 8/9] media: davinci: vpif_display: use module_platform_driver()

2013-05-28 Thread Laurent Pinchart
On Sunday 26 May 2013 17:30:11 Prabhakar Lad wrote:
 From: Lad, Prabhakar prabhakar.cse...@gmail.com
 
 This patch uses module_platform_driver() to simplify the code.
 
 Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com

Acked-by: Laurent Pinchart laurent.pinch...@ideasonboard.com

 ---
  drivers/media/platform/davinci/vpif_display.c |   18 +-
  1 files changed, 1 insertions(+), 17 deletions(-)
 
 diff --git a/drivers/media/platform/davinci/vpif_display.c
 b/drivers/media/platform/davinci/vpif_display.c index 9c308e7..7bcfe7d
 100644
 --- a/drivers/media/platform/davinci/vpif_display.c
 +++ b/drivers/media/platform/davinci/vpif_display.c
 @@ -2005,20 +2005,4 @@ static __refdata struct platform_driver vpif_driver =
 { .remove = vpif_remove,
  };
 
 -static __init int vpif_init(void)
 -{
 - return platform_driver_register(vpif_driver);
 -}
 -
 -/*
 - * vpif_cleanup: This function un-registers device and driver to the
 kernel, - * frees requested irq handler and de-allocates memory allocated
 for channel - * objects.
 - */
 -static void vpif_cleanup(void)
 -{
 - platform_driver_unregister(vpif_driver);
 -}
 -
 -module_init(vpif_init);
 -module_exit(vpif_cleanup);
 +module_platform_driver(vpif_driver);
-- 
Regards,

Laurent Pinchart

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v3 8/9] media: davinci: vpif_display: use module_platform_driver()

2013-05-26 Thread Prabhakar Lad
From: Lad, Prabhakar prabhakar.cse...@gmail.com

This patch uses module_platform_driver() to simplify the code.

Signed-off-by: Lad, Prabhakar prabhakar.cse...@gmail.com
---
 drivers/media/platform/davinci/vpif_display.c |   18 +-
 1 files changed, 1 insertions(+), 17 deletions(-)

diff --git a/drivers/media/platform/davinci/vpif_display.c 
b/drivers/media/platform/davinci/vpif_display.c
index 9c308e7..7bcfe7d 100644
--- a/drivers/media/platform/davinci/vpif_display.c
+++ b/drivers/media/platform/davinci/vpif_display.c
@@ -2005,20 +2005,4 @@ static __refdata struct platform_driver vpif_driver = {
.remove = vpif_remove,
 };
 
-static __init int vpif_init(void)
-{
-   return platform_driver_register(vpif_driver);
-}
-
-/*
- * vpif_cleanup: This function un-registers device and driver to the kernel,
- * frees requested irq handler and de-allocates memory allocated for channel
- * objects.
- */
-static void vpif_cleanup(void)
-{
-   platform_driver_unregister(vpif_driver);
-}
-
-module_init(vpif_init);
-module_exit(vpif_cleanup);
+module_platform_driver(vpif_driver);
-- 
1.7.0.4

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html