* [PATCH] progear_bl: use platform_device_register_simple()
@ 2008-09-21 14:38 Akinobu Mita
2008-09-21 18:54 ` Marcin Juszkiewicz
2008-11-28 9:17 ` Marcin Juszkiewicz
0 siblings, 2 replies; 3+ messages in thread
From: Akinobu Mita @ 2008-09-21 14:38 UTC (permalink / raw)
To: linux-kernel; +Cc: Marcin Juszkiewicz, Richard Purdie
This change also fixes error handling when platform_device_alloc() fails.
(When platform_device_alloc() failed, it returns error without
unregistering progearbl_driver)
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Cc: Marcin Juszkiewicz <linux@hrw.one.pl>
Cc: Richard Purdie <rpurdie@rpsys.net>
---
drivers/video/backlight/progear_bl.c | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)
Index: 2.6-git/drivers/video/backlight/progear_bl.c
===================================================================
--- 2.6-git.orig/drivers/video/backlight/progear_bl.c
+++ 2.6-git/drivers/video/backlight/progear_bl.c
@@ -119,20 +119,16 @@ static int __init progearbl_init(void)
{
int ret = platform_driver_register(&progearbl_driver);
- if (!ret) {
- progearbl_device = platform_device_alloc("progear-bl", -1);
- if (!progearbl_device)
- return -ENOMEM;
-
- ret = platform_device_add(progearbl_device);
-
- if (ret) {
- platform_device_put(progearbl_device);
- platform_driver_unregister(&progearbl_driver);
- }
+ if (ret)
+ return ret;
+ progearbl_device = platform_device_register_simple("progear-bl", -1,
+ NULL, 0);
+ if (IS_ERR(progearbl_device)) {
+ platform_driver_unregister(&progearbl_driver);
+ return PTR_ERR(progearbl_device);
}
- return ret;
+ return 0;
}
static void __exit progearbl_exit(void)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] progear_bl: use platform_device_register_simple()
2008-09-21 14:38 [PATCH] progear_bl: use platform_device_register_simple() Akinobu Mita
@ 2008-09-21 18:54 ` Marcin Juszkiewicz
2008-11-28 9:17 ` Marcin Juszkiewicz
1 sibling, 0 replies; 3+ messages in thread
From: Marcin Juszkiewicz @ 2008-09-21 18:54 UTC (permalink / raw)
To: Akinobu Mita, Richard Purdie; +Cc: linux-kernel
On Sunday 21 of September 2008 16:38:29 Akinobu Mita wrote:
> This change also fixes error handling when platform_device_alloc()
> fails. (When platform_device_alloc() failed, it returns error without
> unregistering progearbl_driver)
I do not have this hardware working now so will not be able to test it
during next month or two.
> Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
> Cc: Marcin Juszkiewicz <linux@hrw.one.pl>
> Cc: Richard Purdie <rpurdie@rpsys.net>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] progear_bl: use platform_device_register_simple()
2008-09-21 14:38 [PATCH] progear_bl: use platform_device_register_simple() Akinobu Mita
2008-09-21 18:54 ` Marcin Juszkiewicz
@ 2008-11-28 9:17 ` Marcin Juszkiewicz
1 sibling, 0 replies; 3+ messages in thread
From: Marcin Juszkiewicz @ 2008-11-28 9:17 UTC (permalink / raw)
To: Akinobu Mita, Richard Purdie; +Cc: linux-kernel
Sunday 21 of September 2008 16:38:29 Akinobu Mita napisał(a):
> This change also fixes error handling when platform_device_alloc()
> fails. (When platform_device_alloc() failed, it returns error without
> unregistering progearbl_driver)
>
> Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
> Cc: Marcin Juszkiewicz <linux@hrw.one.pl>
> Cc: Richard Purdie <rpurdie@rpsys.net>
Acked-by: Marcin Juszkiewicz <marcin@haerwu.biz>
> ---
> drivers/video/backlight/progear_bl.c | 20 ++++++++------------
> 1 file changed, 8 insertions(+), 12 deletions(-)
>
> Index: 2.6-git/drivers/video/backlight/progear_bl.c
> ===================================================================
> --- 2.6-git.orig/drivers/video/backlight/progear_bl.c
> +++ 2.6-git/drivers/video/backlight/progear_bl.c
> @@ -119,20 +119,16 @@ static int __init progearbl_init(void)
> {
> int ret = platform_driver_register(&progearbl_driver);
>
> - if (!ret) {
> - progearbl_device = platform_device_alloc("progear-bl", -1);
> - if (!progearbl_device)
> - return -ENOMEM;
> -
> - ret = platform_device_add(progearbl_device);
> -
> - if (ret) {
> - platform_device_put(progearbl_device);
> - platform_driver_unregister(&progearbl_driver);
> - }
> + if (ret)
> + return ret;
> + progearbl_device = platform_device_register_simple("progear-bl",
> -1, + NULL, 0);
> + if (IS_ERR(progearbl_device)) {
> + platform_driver_unregister(&progearbl_driver);
> + return PTR_ERR(progearbl_device);
> }
>
> - return ret;
> + return 0;
> }
>
> static void __exit progearbl_exit(void)
Regards,
--
JID: hrw@jabber.org
Website: http://blog.haerwu.biz/
LinkedIn: http://www.linkedin.com/in/marcinjuszkiewicz
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-11-28 9:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-21 14:38 [PATCH] progear_bl: use platform_device_register_simple() Akinobu Mita
2008-09-21 18:54 ` Marcin Juszkiewicz
2008-11-28 9:17 ` Marcin Juszkiewicz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox