diff options
| author | Joe Perches <joe@perches.com> | 2012-01-29 13:47:52 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2012-01-31 16:20:48 -0500 | 
| commit | 41de8d4cff21a2e81e3d9ff66f5f7c903f9c3ab1 (patch) | |
| tree | c441a6911ff802233473f31fa29a985e690a816a /drivers/net/usb/usbnet.c | |
| parent | e404decb0fb017be80552adee894b35307b6c7b4 (diff) | |
| download | olio-linux-3.10-41de8d4cff21a2e81e3d9ff66f5f7c903f9c3ab1.tar.xz olio-linux-3.10-41de8d4cff21a2e81e3d9ff66f5f7c903f9c3ab1.zip  | |
drivers/net: Remove alloc_etherdev error messages
alloc_etherdev has a generic OOM/unable to alloc message.
Remove the duplicative messages after alloc_etherdev calls.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/usb/usbnet.c')
| -rw-r--r-- | drivers/net/usb/usbnet.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c index fae0fbd8bc8..b924f46c963 100644 --- a/drivers/net/usb/usbnet.c +++ b/drivers/net/usb/usbnet.c @@ -1334,10 +1334,8 @@ usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)  	// set up our own records  	net = alloc_etherdev(sizeof(*dev)); -	if (!net) { -		dbg ("can't kmalloc dev"); +	if (!net)  		goto out; -	}  	/* netdev_printk() needs this so do it as early as possible */  	SET_NETDEV_DEV(net, &udev->dev);  |