staging: rtl8723au: usb_intf.c: Fixup yet another round of u8 abuse for error type
authorJes Sorensen <Jes.Sorensen@redhat.com>
Fri, 16 May 2014 08:04:43 +0000 (10:04 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 16 May 2014 18:34:31 +0000 (11:34 -0700)
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/os_dep/usb_intf.c

index 6479c5fbf9a16fd115ace2c987909b1987a428de..97a2bc6102b573b42afcd9b15ef67811b3133ed9 100644 (file)
@@ -99,9 +99,9 @@ static inline int RT_usb_endpoint_num(const struct usb_endpoint_descriptor *epd)
        return epd->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
 }
 
-static u8 rtw_init_intf_priv(struct dvobj_priv *dvobj)
+static int rtw_init_intf_priv(struct dvobj_priv *dvobj)
 {
-       u8 rst = _SUCCESS;
+       int rst = _SUCCESS;
 
        mutex_init(&dvobj->usb_vendor_req_mutex);
        dvobj->usb_alloc_vendor_req_buf = kzalloc(MAX_USB_IO_CTL_SIZE,
@@ -117,9 +117,9 @@ exit:
        return rst;
 }
 
-static u8 rtw_deinit_intf_priv(struct dvobj_priv *dvobj)
+static int rtw_deinit_intf_priv(struct dvobj_priv *dvobj)
 {
-       u8 rst = _SUCCESS;
+       int rst = _SUCCESS;
 
        kfree(dvobj->usb_alloc_vendor_req_buf);