projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b771721
)
net/usb/r815x: change the return value for bind functions
author
hayeswang
<hayeswang@realtek.com>
Wed, 31 Jul 2013 09:21:24 +0000
(17:21 +0800)
committer
David S. Miller
<davem@davemloft.net>
Wed, 31 Jul 2013 21:49:13 +0000
(14:49 -0700)
Replace 0 with the result from usbnet_cdc_bind().
Signed-off-by: Hayes Wang <hayeswang@realtek.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/usb/r815x.c
patch
|
blob
|
history
diff --git
a/drivers/net/usb/r815x.c
b/drivers/net/usb/r815x.c
index 1a80e76ce0b9f43466e53396b5e1df9f645934ab..2df2f4fb42a7c381fb68275bfab10052b7a71363 100644
(file)
--- a/
drivers/net/usb/r815x.c
+++ b/
drivers/net/usb/r815x.c
@@
-172,7
+172,7
@@
static int r8153_bind(struct usbnet *dev, struct usb_interface *intf)
dev->mii.phy_id = R815x_PHY_ID;
dev->mii.supports_gmii = 1;
- return
0
;
+ return
status
;
}
static int r8152_bind(struct usbnet *dev, struct usb_interface *intf)
@@
-191,7
+191,7
@@
static int r8152_bind(struct usbnet *dev, struct usb_interface *intf)
dev->mii.phy_id = R815x_PHY_ID;
dev->mii.supports_gmii = 0;
- return
0
;
+ return
status
;
}
static const struct driver_info r8152_info = {