mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] usb: gadget: Cocci spatch "err_cast.spatch"
@ 2013-06-01 10:08 Thomas Meyer
  2013-06-01 16:59 ` Felipe Balbi
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Meyer @ 2013-06-01 10:08 UTC (permalink / raw)
  To: balbi, linux-usb, linux-kernel


Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
---

diff -u -p a/drivers/usb/gadget/composite.c b/drivers/usb/gadget/composite.c
--- a/drivers/usb/gadget/composite.c
+++ b/drivers/usb/gadget/composite.c
@@ -1138,7 +1138,7 @@ struct usb_string *usb_gstrings_attach(s
 
 	uc = copy_gadget_strings(sp, n_gstrings, n_strings);
 	if (IS_ERR(uc))
-		return ERR_PTR(PTR_ERR(uc));
+		return ERR_CAST(uc);
 
 	n_gs = get_containers_gs(uc);
 	ret = usb_string_ids_tab(cdev, n_gs[0]->strings);

diff -u -p a/drivers/usb/gadget/configfs.c b/drivers/usb/gadget/configfs.c
--- a/drivers/usb/gadget/configfs.c
+++ b/drivers/usb/gadget/configfs.c
@@ -557,7 +557,7 @@ static struct config_group *function_mak
 
 	fi = usb_get_function_instance(func_name);
 	if (IS_ERR(fi))
-		return ERR_PTR(PTR_ERR(fi));
+		return ERR_CAST(fi);
 
 	ret = config_item_set_name(&fi->group.cg_item, name);
 	if (ret) {



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

* Re: [PATCH] usb: gadget: Cocci spatch "err_cast.spatch"
  2013-06-01 10:08 [PATCH] usb: gadget: Cocci spatch "err_cast.spatch" Thomas Meyer
@ 2013-06-01 16:59 ` Felipe Balbi
  0 siblings, 0 replies; 2+ messages in thread
From: Felipe Balbi @ 2013-06-01 16:59 UTC (permalink / raw)
  To: Thomas Meyer; +Cc: balbi, linux-usb, linux-kernel

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

On Sat, Jun 01, 2013 at 12:08:45PM +0200, Thomas Meyer wrote:
> 

-ENOLOG

> Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
> ---
> 
> diff -u -p a/drivers/usb/gadget/composite.c b/drivers/usb/gadget/composite.c
> --- a/drivers/usb/gadget/composite.c
> +++ b/drivers/usb/gadget/composite.c
> @@ -1138,7 +1138,7 @@ struct usb_string *usb_gstrings_attach(s
>  
>  	uc = copy_gadget_strings(sp, n_gstrings, n_strings);
>  	if (IS_ERR(uc))
> -		return ERR_PTR(PTR_ERR(uc));
> +		return ERR_CAST(uc);
>  
>  	n_gs = get_containers_gs(uc);
>  	ret = usb_string_ids_tab(cdev, n_gs[0]->strings);
> 
> diff -u -p a/drivers/usb/gadget/configfs.c b/drivers/usb/gadget/configfs.c
> --- a/drivers/usb/gadget/configfs.c
> +++ b/drivers/usb/gadget/configfs.c
> @@ -557,7 +557,7 @@ static struct config_group *function_mak
>  
>  	fi = usb_get_function_instance(func_name);
>  	if (IS_ERR(fi))
> -		return ERR_PTR(PTR_ERR(fi));
> +		return ERR_CAST(fi);
>  
>  	ret = config_item_set_name(&fi->group.cg_item, name);
>  	if (ret) {
> 
> 

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

end of thread, other threads:[~2013-06-01 17:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-01 10:08 [PATCH] usb: gadget: Cocci spatch "err_cast.spatch" Thomas Meyer
2013-06-01 16:59 ` Felipe Balbi

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

all inboxes | Powered by JetHome®