Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 543ae7f9 authored by hayeswang's avatar hayeswang Committed by David S. Miller
Browse files

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



Replace 0 with the result from usbnet_cdc_bind().

Signed-off-by: default avatarHayes Wang <hayeswang@realtek.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b771721a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 = {