Commit 586b0632 authored by Sudip Mukherjee's avatar Sudip Mukherjee Committed by Greg Kroah-Hartman

staging: rtl8188eu: remove label

Directly return NULL instead of using another label and goto.
Signed-off-by: default avatarSudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8da24c93
...@@ -66,7 +66,7 @@ static struct dvobj_priv *usb_dvobj_init(struct usb_interface *usb_intf) ...@@ -66,7 +66,7 @@ static struct dvobj_priv *usb_dvobj_init(struct usb_interface *usb_intf)
pdvobjpriv = kzalloc(sizeof(*pdvobjpriv), GFP_KERNEL); pdvobjpriv = kzalloc(sizeof(*pdvobjpriv), GFP_KERNEL);
if (pdvobjpriv == NULL) if (pdvobjpriv == NULL)
goto exit; return NULL;
pdvobjpriv->pusbintf = usb_intf; pdvobjpriv->pusbintf = usb_intf;
pusbd = interface_to_usbdev(usb_intf); pusbd = interface_to_usbdev(usb_intf);
...@@ -121,7 +121,7 @@ static struct dvobj_priv *usb_dvobj_init(struct usb_interface *usb_intf) ...@@ -121,7 +121,7 @@ static struct dvobj_priv *usb_dvobj_init(struct usb_interface *usb_intf)
kfree(pdvobjpriv); kfree(pdvobjpriv);
pdvobjpriv = NULL; pdvobjpriv = NULL;
} }
exit:
return pdvobjpriv; return pdvobjpriv;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment