Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6: (75 commits) pppoe.c: Fix kernel panic caused by __pppoe_xmit WAN: Fix a TX IRQ causing BUG() in PC300 and PCI200SYN drivers. bnx2x: Advance a version number to 1.60.01-0 bnx2x: Fixed a compilation warning bnx2x: LSO code was broken on BE platforms qlge: Fix deadlock when cancelling worker. net: fix skb_defer_rx_timestamp() cxgb4vf: Ingress Queue Entry Size needs to be 64 bytes phy: add the IC+ IP1001 driver atm: correct sysfs 'device' link creation and parent relationships MAINTAINERS: remove me from tulip SCTP: Fix SCTP_SET_PEER_PRIMARY_ADDR to accpet v4mapped address enic: Bug Fix: Pass napi reference to the isr that services receive queue ipv6: fix nl group when advertising a new link connector: add module alias net: Document the kernel_recvmsg() function r8169: Fix runtime power management hso: IP checksuming doesn't work on GE0301 option cards xfrm: Fix xfrm_state_migrate leak net: Convert netpoll blocking api in bonding driver to be a counter ...
This commit is contained in:
@@ -951,7 +951,9 @@ static int usbatm_atm_init(struct usbatm_data *instance)
|
||||
* condition: callbacks we register can be executed at once, before we have
|
||||
* initialized the struct atm_dev. To protect against this, all callbacks
|
||||
* abort if atm_dev->dev_data is NULL. */
|
||||
atm_dev = atm_dev_register(instance->driver_name, &usbatm_atm_devops, -1, NULL);
|
||||
atm_dev = atm_dev_register(instance->driver_name,
|
||||
&instance->usb_intf->dev, &usbatm_atm_devops,
|
||||
-1, NULL);
|
||||
if (!atm_dev) {
|
||||
usb_err(instance, "%s: failed to register ATM device!\n", __func__);
|
||||
return -1;
|
||||
@@ -966,14 +968,6 @@ static int usbatm_atm_init(struct usbatm_data *instance)
|
||||
/* temp init ATM device, set to 128kbit */
|
||||
atm_dev->link_rate = 128 * 1000 / 424;
|
||||
|
||||
ret = sysfs_create_link(&atm_dev->class_dev.kobj,
|
||||
&instance->usb_intf->dev.kobj, "device");
|
||||
if (ret) {
|
||||
atm_err(instance, "%s: sysfs_create_link failed: %d\n",
|
||||
__func__, ret);
|
||||
goto fail_sysfs;
|
||||
}
|
||||
|
||||
if (instance->driver->atm_start && ((ret = instance->driver->atm_start(instance, atm_dev)) < 0)) {
|
||||
atm_err(instance, "%s: atm_start failed: %d!\n", __func__, ret);
|
||||
goto fail;
|
||||
@@ -992,8 +986,6 @@ static int usbatm_atm_init(struct usbatm_data *instance)
|
||||
return 0;
|
||||
|
||||
fail:
|
||||
sysfs_remove_link(&atm_dev->class_dev.kobj, "device");
|
||||
fail_sysfs:
|
||||
instance->atm_dev = NULL;
|
||||
atm_dev_deregister(atm_dev); /* usbatm_atm_dev_close will eventually be called */
|
||||
return ret;
|
||||
@@ -1329,7 +1321,6 @@ void usbatm_usb_disconnect(struct usb_interface *intf)
|
||||
|
||||
/* ATM finalize */
|
||||
if (instance->atm_dev) {
|
||||
sysfs_remove_link(&instance->atm_dev->class_dev.kobj, "device");
|
||||
atm_dev_deregister(instance->atm_dev);
|
||||
instance->atm_dev = NULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user