Skip to content

Commit

Permalink
USB: remove dead code from usb_deregister_dev()
Browse files Browse the repository at this point in the history
The `name' variable is unused in usb_deregister_dev() since commit d6e5bcf
(devfs: Remove the mode field from usb_class_driver as it's no longer needed).

Signed-off-by: Libor Pechacek <lpechacek@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Libor Pechacek authored and Greg Kroah-Hartman committed Apr 13, 2011
1 parent 806e8f8 commit edf847d
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions drivers/usb/core/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,13 +236,6 @@ EXPORT_SYMBOL_GPL(usb_register_dev);
void usb_deregister_dev(struct usb_interface *intf,
struct usb_class_driver *class_driver)
{
int minor_base = class_driver->minor_base;
char name[20];

#ifdef CONFIG_USB_DYNAMIC_MINORS
minor_base = 0;
#endif

if (intf->minor == -1)
return;

Expand All @@ -252,7 +245,6 @@ void usb_deregister_dev(struct usb_interface *intf,
usb_minors[intf->minor] = NULL;
up_write(&minor_rwsem);

snprintf(name, sizeof(name), class_driver->name, intf->minor - minor_base);
device_destroy(usb_class->class, MKDEV(USB_MAJOR, intf->minor));
intf->usb_dev = NULL;
intf->minor = -1;
Expand Down

0 comments on commit edf847d

Please sign in to comment.