From: Greg Kroah-Hartman Date: Wed, 28 Nov 2007 20:23:18 +0000 (-0800) Subject: PCMCIA: use proper call to driver_create_file X-Git-Tag: v2.6.25-rc1~1243^2~54 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2344c6de6b6f2a4b07e4416aac9522d23e00d7bc;p=platform%2Fkernel%2Flinux-3.10.git 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 --- diff --git a/drivers/pcmcia/ds.c b/drivers/pcmcia/ds.c index 5cf89a9..15c18f5 100644 --- a/drivers/pcmcia/ds.c +++ b/drivers/pcmcia/ds.c @@ -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; }