summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorAndre Richter <andre.o.richter@gmail.com>2014-01-10 12:41:59 +1100
committerStephen Rothwell <sfr@canb.auug.org.au>2014-01-10 12:41:59 +1100
commit8c0fb64ff4e2c03e1b32d21cd91fe63d9e2dccd4 (patch)
treeabbde9c6ed6d58933bc640a458a4404cde645c24 /Documentation
parentb103fd4778f36c588e22a916f9f7bba00a6d08e9 (diff)
Documentation/filesystems/sysfs.txt: fix device_attribute declaration
Fix a wrong device_attribute declaration example. Signed-off-by: Andre Richter <andre.o.richter@gmail.com> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/filesystems/sysfs.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/filesystems/sysfs.txt b/Documentation/filesystems/sysfs.txt
index a6619b7064b9..b35a64b82f9e 100644
--- a/Documentation/filesystems/sysfs.txt
+++ b/Documentation/filesystems/sysfs.txt
@@ -108,12 +108,12 @@ static DEVICE_ATTR(foo, S_IWUSR | S_IRUGO, show_foo, store_foo);
is equivalent to doing:
static struct device_attribute dev_attr_foo = {
- .attr = {
+ .attr = {
.name = "foo",
.mode = S_IWUSR | S_IRUGO,
- .show = show_foo,
- .store = store_foo,
},
+ .show = show_foo,
+ .store = store_foo,
};