diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/base/bus.c | 5 | ||||
-rw-r--r-- | drivers/net/appletalk/ltpc.c | 6 | ||||
-rw-r--r-- | drivers/usb/input/hid-core.c | 4 |
3 files changed, 6 insertions, 9 deletions
diff --git a/drivers/base/bus.c b/drivers/base/bus.c index 43722af90bdd..c3fac7fd555e 100644 --- a/drivers/base/bus.c +++ b/drivers/base/bus.c | |||
@@ -270,10 +270,9 @@ int bus_add_device(struct device * dev) | |||
270 | 270 | ||
271 | if (bus) { | 271 | if (bus) { |
272 | pr_debug("bus %s: add device %s\n", bus->name, dev->bus_id); | 272 | pr_debug("bus %s: add device %s\n", bus->name, dev->bus_id); |
273 | error = device_attach(dev); | 273 | device_attach(dev); |
274 | klist_add_tail(&bus->klist_devices, &dev->knode_bus); | 274 | klist_add_tail(&bus->klist_devices, &dev->knode_bus); |
275 | if (error >= 0) | 275 | error = device_add_attrs(bus, dev); |
276 | error = device_add_attrs(bus, dev); | ||
277 | if (!error) { | 276 | if (!error) { |
278 | sysfs_create_link(&bus->devices.kobj, &dev->kobj, dev->bus_id); | 277 | sysfs_create_link(&bus->devices.kobj, &dev->kobj, dev->bus_id); |
279 | sysfs_create_link(&dev->kobj, &dev->bus->subsys.kset.kobj, "bus"); | 278 | sysfs_create_link(&dev->kobj, &dev->bus->subsys.kset.kobj, "bus"); |
diff --git a/drivers/net/appletalk/ltpc.c b/drivers/net/appletalk/ltpc.c index db4f369637b6..d5666c37cb0d 100644 --- a/drivers/net/appletalk/ltpc.c +++ b/drivers/net/appletalk/ltpc.c | |||
@@ -1109,8 +1109,7 @@ struct net_device * __init ltpc_probe(void) | |||
1109 | inb_p(io+1); | 1109 | inb_p(io+1); |
1110 | inb_p(io+3); | 1110 | inb_p(io+3); |
1111 | 1111 | ||
1112 | set_current_state(TASK_UNINTERRUPTIBLE); | 1112 | msleep(20); |
1113 | schedule_timeout(2*HZ/100); | ||
1114 | 1113 | ||
1115 | inb_p(io+0); | 1114 | inb_p(io+0); |
1116 | inb_p(io+2); | 1115 | inb_p(io+2); |
@@ -1120,8 +1119,7 @@ struct net_device * __init ltpc_probe(void) | |||
1120 | inb_p(io+5); /* enable dma */ | 1119 | inb_p(io+5); /* enable dma */ |
1121 | inb_p(io+6); /* tri-state interrupt line */ | 1120 | inb_p(io+6); /* tri-state interrupt line */ |
1122 | 1121 | ||
1123 | set_current_state(TASK_UNINTERRUPTIBLE); | 1122 | ssleep(1); |
1124 | schedule_timeout(HZ); | ||
1125 | 1123 | ||
1126 | /* now, figure out which dma channel we're using, unless it's | 1124 | /* now, figure out which dma channel we're using, unless it's |
1127 | already been specified */ | 1125 | already been specified */ |
diff --git a/drivers/usb/input/hid-core.c b/drivers/usb/input/hid-core.c index 2d8bd9dcc6ed..740dec1f521d 100644 --- a/drivers/usb/input/hid-core.c +++ b/drivers/usb/input/hid-core.c | |||
@@ -1762,7 +1762,7 @@ static int hid_probe(struct usb_interface *intf, const struct usb_device_id *id) | |||
1762 | intf->altsetting->desc.bInterfaceNumber); | 1762 | intf->altsetting->desc.bInterfaceNumber); |
1763 | 1763 | ||
1764 | if (!(hid = usb_hid_configure(intf))) | 1764 | if (!(hid = usb_hid_configure(intf))) |
1765 | return -EIO; | 1765 | return -ENODEV; |
1766 | 1766 | ||
1767 | hid_init_reports(hid); | 1767 | hid_init_reports(hid); |
1768 | hid_dump_device(hid); | 1768 | hid_dump_device(hid); |
@@ -1777,7 +1777,7 @@ static int hid_probe(struct usb_interface *intf, const struct usb_device_id *id) | |||
1777 | if (!hid->claimed) { | 1777 | if (!hid->claimed) { |
1778 | printk ("HID device not claimed by input or hiddev\n"); | 1778 | printk ("HID device not claimed by input or hiddev\n"); |
1779 | hid_disconnect(intf); | 1779 | hid_disconnect(intf); |
1780 | return -EIO; | 1780 | return -ENODEV; |
1781 | } | 1781 | } |
1782 | 1782 | ||
1783 | printk(KERN_INFO); | 1783 | printk(KERN_INFO); |