diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2007-11-28 15:23:18 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-01-24 23:40:33 -0500 |
commit | 15147ffd57576fc00a23ad8a020ff46493a4f924 (patch) | |
tree | 51695632504dec13cced0c9dcbc75bc6b4c3648e | |
parent | c6f7e72a3f4641095ade9ded287d910c980c6148 (diff) |
USB: use proper call to driver_create_file
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>
-rw-r--r-- | drivers/usb/core/driver.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/core/driver.c b/drivers/usb/core/driver.c index c51f8e9312e0..7c3aaa9c5402 100644 --- a/drivers/usb/core/driver.c +++ b/drivers/usb/core/driver.c | |||
@@ -91,8 +91,8 @@ static int usb_create_newid_file(struct usb_driver *usb_drv) | |||
91 | goto exit; | 91 | goto exit; |
92 | 92 | ||
93 | if (usb_drv->probe != NULL) | 93 | if (usb_drv->probe != NULL) |
94 | error = sysfs_create_file(&usb_drv->drvwrap.driver.kobj, | 94 | error = driver_create_file(&usb_drv->drvwrap.driver, |
95 | &driver_attr_new_id.attr); | 95 | &driver_attr_new_id); |
96 | exit: | 96 | exit: |
97 | return error; | 97 | return error; |
98 | } | 98 | } |
@@ -103,8 +103,8 @@ static void usb_remove_newid_file(struct usb_driver *usb_drv) | |||
103 | return; | 103 | return; |
104 | 104 | ||
105 | if (usb_drv->probe != NULL) | 105 | if (usb_drv->probe != NULL) |
106 | sysfs_remove_file(&usb_drv->drvwrap.driver.kobj, | 106 | driver_remove_file(&usb_drv->drvwrap.driver, |
107 | &driver_attr_new_id.attr); | 107 | &driver_attr_new_id); |
108 | } | 108 | } |
109 | 109 | ||
110 | static void usb_free_dynids(struct usb_driver *usb_drv) | 110 | static void usb_free_dynids(struct usb_driver *usb_drv) |