|
@@ -248,12 +248,7 @@ int sysfs_create_bin_file(struct kobject * kobj, struct bin_attribute * attr)
|
|
|
|
|
|
void sysfs_remove_bin_file(struct kobject * kobj, struct bin_attribute * attr)
|
|
|
{
|
|
|
- if (sysfs_hash_and_remove(kobj->sd, attr->attr.name) < 0) {
|
|
|
- printk(KERN_ERR "%s: "
|
|
|
- "bad dentry or inode or no such file: \"%s\"\n",
|
|
|
- __FUNCTION__, attr->attr.name);
|
|
|
- dump_stack();
|
|
|
- }
|
|
|
+ sysfs_hash_and_remove(kobj->sd, attr->attr.name);
|
|
|
}
|
|
|
|
|
|
EXPORT_SYMBOL_GPL(sysfs_create_bin_file);
|