Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH] net: bluetooth: Use PTR_RET function
@ 2013-03-16 14:10 Alexandru Gheorghiu
  2013-03-18 14:57 ` Gustavo Padovan
  0 siblings, 1 reply; 3+ messages in thread
From: Alexandru Gheorghiu @ 2013-03-16 14:10 UTC (permalink / raw)
  To: Marcel Holtmann
  Cc: Gustavo Padovan, Johan Hedberg, linux-bluetooth, linux-kernel,
	Alexandru Gheorghiu

Used PTR_RET function instead of IS_ERR and PTR_ERR.
Patch found using coccinelle.

Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
---
 net/bluetooth/hci_sysfs.c |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c
index 23b4e24..ff38561 100644
--- a/net/bluetooth/hci_sysfs.c
+++ b/net/bluetooth/hci_sysfs.c
@@ -590,10 +590,8 @@ int __init bt_sysfs_init(void)
 	bt_debugfs = debugfs_create_dir("bluetooth", NULL);
 
 	bt_class = class_create(THIS_MODULE, "bluetooth");
-	if (IS_ERR(bt_class))
-		return PTR_ERR(bt_class);
 
-	return 0;
+	return PTR_RET(bt_class);
 }
 
 void bt_sysfs_cleanup(void)
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] net: bluetooth: Use PTR_RET function
  2013-03-16 14:10 [PATCH] net: bluetooth: Use PTR_RET function Alexandru Gheorghiu
@ 2013-03-18 14:57 ` Gustavo Padovan
  2013-03-18 15:03   ` Andru Gheorghiu
  0 siblings, 1 reply; 3+ messages in thread
From: Gustavo Padovan @ 2013-03-18 14:57 UTC (permalink / raw)
  To: Alexandru Gheorghiu
  Cc: Marcel Holtmann, Johan Hedberg, linux-bluetooth, linux-kernel

Hi Alexandru,

* Alexandru Gheorghiu <gheorghiuandru@gmail.com> [2013-03-16 16:10:03 +0200]:

> Used PTR_RET function instead of IS_ERR and PTR_ERR.
> Patch found using coccinelle.
> 
> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
> ---
>  net/bluetooth/hci_sysfs.c |    4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)

Patch has been applied to bluetooth-next. Thanks.

	Gustavo

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] net: bluetooth: Use PTR_RET function
  2013-03-18 14:57 ` Gustavo Padovan
@ 2013-03-18 15:03   ` Andru Gheorghiu
  0 siblings, 0 replies; 3+ messages in thread
From: Andru Gheorghiu @ 2013-03-18 15:03 UTC (permalink / raw)
  To: Gustavo Padovan, Alexandru Gheorghiu, Marcel Holtmann,
	Johan Hedberg, linux-bluetooth, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 615 bytes --]

Sorry, I made the change without checking. I shall resend it.

Thank you,
Alexandru Gheorghiu

On Mon, Mar 18, 2013 at 4:57 PM, Gustavo Padovan <gustavo@padovan.org>wrote:

> Hi Alexandru,
>
> * Alexandru Gheorghiu <gheorghiuandru@gmail.com> [2013-03-16 16:10:03
> +0200]:
>
> > Used PTR_RET function instead of IS_ERR and PTR_ERR.
> > Patch found using coccinelle.
> >
> > Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
> > ---
> >  net/bluetooth/hci_sysfs.c |    4 +---
> >  1 file changed, 1 insertion(+), 3 deletions(-)
>
> Patch has been applied to bluetooth-next. Thanks.
>
>         Gustavo
>

[-- Attachment #2: Type: text/html, Size: 1147 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-03-18 15:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-16 14:10 [PATCH] net: bluetooth: Use PTR_RET function Alexandru Gheorghiu
2013-03-18 14:57 ` Gustavo Padovan
2013-03-18 15:03   ` Andru Gheorghiu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox