Skip to content

Commit

Permalink
USB: use proper call to driver_create_file
Browse files Browse the repository at this point in the history
Don't try to call the "raw" sysfs_create_file when we already have a
helper function to do this kind of work for us.

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Jan 25, 2008
1 parent c6f7e72 commit 15147ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/usb/core/driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ static int usb_create_newid_file(struct usb_driver *usb_drv)
goto exit;

if (usb_drv->probe != NULL)
error = sysfs_create_file(&usb_drv->drvwrap.driver.kobj,
&driver_attr_new_id.attr);
error = driver_create_file(&usb_drv->drvwrap.driver,
&driver_attr_new_id);
exit:
return error;
}
Expand All @@ -103,8 +103,8 @@ static void usb_remove_newid_file(struct usb_driver *usb_drv)
return;

if (usb_drv->probe != NULL)
sysfs_remove_file(&usb_drv->drvwrap.driver.kobj,
&driver_attr_new_id.attr);
driver_remove_file(&usb_drv->drvwrap.driver,
&driver_attr_new_id);
}

static void usb_free_dynids(struct usb_driver *usb_drv)
Expand Down

0 comments on commit 15147ff

Please sign in to comment.