aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorAkinobu Mita <akinobu.mita@gmail.com>2011-07-09 01:01:17 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2011-07-18 16:36:15 -0400
commitd0a542637f6879a493aa713b9f81c4fcd98f4f7a (patch)
treec7ac22d9c5a4e69bb6603e3807c54c4952b3c80a /Documentation
parent27760f868663310ff9e701f47aec33da3b906f34 (diff)
debugfs: add documentation for debugfs_create_x64
debugfs_create_x64() exists. Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> Cc: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/filesystems/debugfs.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/filesystems/debugfs.txt b/Documentation/filesystems/debugfs.txt
index ed52af60c2d8..742cc06e138f 100644
--- a/Documentation/filesystems/debugfs.txt
+++ b/Documentation/filesystems/debugfs.txt
@@ -73,8 +73,8 @@ the following functions can be used instead:
73 struct dentry *parent, u16 *value); 73 struct dentry *parent, u16 *value);
74 struct dentry *debugfs_create_x32(const char *name, mode_t mode, 74 struct dentry *debugfs_create_x32(const char *name, mode_t mode,
75 struct dentry *parent, u32 *value); 75 struct dentry *parent, u32 *value);
76 76 struct dentry *debugfs_create_x64(const char *name, mode_t mode,
77Note that there is no debugfs_create_x64(). 77 struct dentry *parent, u64 *value);
78 78
79These functions are useful as long as the developer knows the size of the 79These functions are useful as long as the developer knows the size of the
80value to be exported. Some types can have different widths on different 80value to be exported. Some types can have different widths on different