aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/filesystems/sysfs.txt
diff options
context:
space:
mode:
authorIra Weiny <weiny2@llnl.gov>2010-07-15 11:34:44 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2010-08-05 13:53:34 -0700
commita5307032718b1e90e6d07008d7fd44d1446db7d7 (patch)
treed22552c20960a9c68feb4fd2748241eea71fa781 /Documentation/filesystems/sysfs.txt
parentsysfs: fix discrepancies between implementation and documentation (diff)
downloadlinux-dev-a5307032718b1e90e6d07008d7fd44d1446db7d7.tar.xz
linux-dev-a5307032718b1e90e6d07008d7fd44d1446db7d7.zip
sysfs: Fix one more signature discrepancy between sysfs implementation and docs.
Signed-off-by: Ira Weiny <weiny2@llnl.gov> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'Documentation/filesystems/sysfs.txt')
-rw-r--r--Documentation/filesystems/sysfs.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/filesystems/sysfs.txt b/Documentation/filesystems/sysfs.txt
index d78ed0bb2756..5d1335faec2d 100644
--- a/Documentation/filesystems/sysfs.txt
+++ b/Documentation/filesystems/sysfs.txt
@@ -4,7 +4,7 @@ sysfs - _The_ filesystem for exporting kernel objects.
Patrick Mochel <mochel@osdl.org>
Mike Murphy <mamurph@cs.clemson.edu>
-Revised: 10 July 2010
+Revised: 15 July 2010
Original: 10 January 2003
@@ -333,7 +333,7 @@ Structure:
struct bus_attribute {
struct attribute attr;
ssize_t (*show)(struct bus_type *, char * buf);
- ssize_t (*store)(struct bus_type *, const char * buf);
+ ssize_t (*store)(struct bus_type *, const char * buf, size_t count);
};
Declaring: