projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
15147ff
)
PCMCIA: use proper call to driver_create_file
author
Greg Kroah-Hartman
<gregkh@suse.de>
Wed, 28 Nov 2007 20:23:18 +0000
(12:23 -0800)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Fri, 25 Jan 2008 04:40:33 +0000
(20:40 -0800)
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>
drivers/pcmcia/ds.c
patch
|
blob
|
history
diff --git
a/drivers/pcmcia/ds.c
b/drivers/pcmcia/ds.c
index 5cf89a91da1ea275266da0a42d6dada7672e5466..15c18f5246d6d21bbd2c849892ef0f88d536395c 100644
(file)
--- 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;
}