Commit 09abfa80 authored by Petko Manolov's avatar Petko Manolov Committed by Greg Kroah-Hartman

[PATCH] USB: rtl8150 small fix

This one is about announcing the device registration after the last check
has been made.

From: Petko Manolov <petkan@nucleusys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent bf58fbd5
...@@ -880,7 +880,6 @@ static int rtl8150_probe(struct usb_interface *intf, ...@@ -880,7 +880,6 @@ static int rtl8150_probe(struct usb_interface *intf,
} }
fill_skb_pool(dev); fill_skb_pool(dev);
set_ethernet_addr(dev); set_ethernet_addr(dev);
info("%s: rtl8150 is detected", netdev->name);
usb_set_intfdata(intf, dev); usb_set_intfdata(intf, dev);
SET_NETDEV_DEV(netdev, &intf->dev); SET_NETDEV_DEV(netdev, &intf->dev);
...@@ -888,6 +887,9 @@ static int rtl8150_probe(struct usb_interface *intf, ...@@ -888,6 +887,9 @@ static int rtl8150_probe(struct usb_interface *intf,
err("couldn't register the device"); err("couldn't register the device");
goto out2; goto out2;
} }
info("%s: rtl8150 is detected", netdev->name);
return 0; return 0;
out2: out2:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment