Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2344c6de authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

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: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 15147ffd
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -312,8 +312,7 @@ pcmcia_create_newid_file(struct pcmcia_driver *drv)
{
	int error = 0;
	if (drv->probe != NULL)
		error = sysfs_create_file(&drv->drv.kobj,
					  &driver_attr_new_id.attr);
		error = driver_create_file(&drv->drv, &driver_attr_new_id);
	return error;
}