staging: rtl8188eu: Remove usb_alloc_vendor_req_buf from struct dvobj_priv
authornavin patidar <navin.patidar@gmail.com>
Sun, 1 Jun 2014 12:16:40 +0000 (17:46 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 Jun 2014 22:30:03 +0000 (15:30 -0700)
Signed-off-by: navin patidar <navin.patidar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/include/drv_types.h
drivers/staging/rtl8188eu/os_dep/usb_intf.c

index c441d46..7586de7 100644 (file)
@@ -172,7 +172,6 @@ struct dvobj_priv {
        int     ep_num[5]; /* endpoint number */
        struct mutex  usb_vendor_req_mutex;
 
-       u8 *usb_alloc_vendor_req_buf;
        u8 *usb_vendor_req_buf;
 
        struct usb_interface *pusbintf;
index 2333fa6..1265a47 100644 (file)
@@ -54,26 +54,19 @@ MODULE_DEVICE_TABLE(usb, rtw_usb_id_tbl);
 
 static u8 rtw_init_intf_priv(struct dvobj_priv *dvobj)
 {
-       u8 rst = _SUCCESS;
-
        mutex_init(&dvobj->usb_vendor_req_mutex);
+       dvobj->usb_vendor_req_buf = rtw_zmalloc(MAX_USB_IO_CTL_SIZE);
+       if (!dvobj->usb_vendor_req_buf)
+               return _FAIL;
 
-       dvobj->usb_alloc_vendor_req_buf = rtw_zmalloc(MAX_USB_IO_CTL_SIZE);
-       if (dvobj->usb_alloc_vendor_req_buf == NULL) {
-               DBG_88E("alloc usb_vendor_req_buf failed...\n");
-               rst = _FAIL;
-               goto exit;
-       }
-       dvobj->usb_vendor_req_buf = (u8 *)N_BYTE_ALIGMENT((size_t)(dvobj->usb_alloc_vendor_req_buf), ALIGNMENT_UNIT);
-exit:
-       return rst;
+       return _SUCCESS;
 }
 
 static u8 rtw_deinit_intf_priv(struct dvobj_priv *dvobj)
 {
        u8 rst = _SUCCESS;
 
-       kfree(dvobj->usb_alloc_vendor_req_buf);
+       kfree(dvobj->usb_vendor_req_buf);
        mutex_destroy(&dvobj->usb_vendor_req_mutex);
        return rst;
 }