summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8188eu/os_dep
diff options
context:
space:
mode:
authorSudip Mukherjee <sudipm.mukherjee@gmail.com>2015-07-16 16:58:09 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-07-16 10:18:09 -0700
commit47ccb34ac72c0dbbb68f6a07ce63e9f0d21510ea (patch)
tree55f9ec5d288a70c2bf1a1ad6985bd5ac4fb7e9cf /drivers/staging/rtl8188eu/os_dep
parent277394198413fc46e81767827533e5ab8ef167af (diff)
downloadop-kernel-dev-47ccb34ac72c0dbbb68f6a07ce63e9f0d21510ea.zip
op-kernel-dev-47ccb34ac72c0dbbb68f6a07ce63e9f0d21510ea.tar.gz
staging: rtl8188eu: remove goto label
By checking for the success of kzalloc we were able to remove the goto label thus making the code more readable. Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu/os_dep')
-rw-r--r--drivers/staging/rtl8188eu/os_dep/usb_intf.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/staging/rtl8188eu/os_dep/usb_intf.c b/drivers/staging/rtl8188eu/os_dep/usb_intf.c
index 21744a5..f68875b 100644
--- a/drivers/staging/rtl8188eu/os_dep/usb_intf.c
+++ b/drivers/staging/rtl8188eu/os_dep/usb_intf.c
@@ -115,14 +115,11 @@ static struct dvobj_priv *usb_dvobj_init(struct usb_interface *usb_intf)
mutex_init(&pdvobjpriv->usb_vendor_req_mutex);
pdvobjpriv->usb_vendor_req_buf = kzalloc(MAX_USB_IO_CTL_SIZE, GFP_KERNEL);
- if (!pdvobjpriv->usb_vendor_req_buf)
- goto free_dvobj;
-
- usb_get_dev(pusbd);
-
- status = _SUCCESS;
+ if (pdvobjpriv->usb_vendor_req_buf) {
+ usb_get_dev(pusbd);
+ status = _SUCCESS;
+ }
-free_dvobj:
if (status != _SUCCESS) {
usb_set_intfdata(usb_intf, NULL);
kfree(pdvobjpriv);
OpenPOWER on IntegriCloud