PCMCIA: 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>
This commit is contained in:
parent
15147ffd57
commit
2344c6de6b
|
@ -312,8 +312,7 @@ pcmcia_create_newid_file(struct pcmcia_driver *drv)
|
||||||
{
|
{
|
||||||
int error = 0;
|
int error = 0;
|
||||||
if (drv->probe != NULL)
|
if (drv->probe != NULL)
|
||||||
error = sysfs_create_file(&drv->drv.kobj,
|
error = driver_create_file(&drv->drv, &driver_attr_new_id);
|
||||||
&driver_attr_new_id.attr);
|
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue