net/usb/r815x: change the return value for bind functions

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>
This commit is contained in:
hayeswang 2013-07-31 17:21:24 +08:00 коммит произвёл David S. Miller
Родитель b771721a74
Коммит 543ae7f9c4
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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 = {