diff options
author | Jonathan Corbet <corbet@lwn.net> | 2009-05-25 12:15:27 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-06-16 00:30:24 -0400 |
commit | 400ced61fa4914457d7e0a38e7c0fc6fd208694b (patch) | |
tree | 1416a2f63ea4a12431b6e276bc47b543add3f719 /fs | |
parent | 9227c47bbdd87f276e08ed17877cc1649f5ed10a (diff) |
debugfs: fix docbook error
Fix an error in debugfs_create_blob's docbook description
It cannot actually be used to write a binary blob.
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/debugfs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c index 33a90120f6ad..39a619c222fa 100644 --- a/fs/debugfs/file.c +++ b/fs/debugfs/file.c | |||
@@ -419,7 +419,7 @@ static const struct file_operations fops_blob = { | |||
419 | }; | 419 | }; |
420 | 420 | ||
421 | /** | 421 | /** |
422 | * debugfs_create_blob - create a debugfs file that is used to read and write a binary blob | 422 | * debugfs_create_blob - create a debugfs file that is used to read a binary blob |
423 | * @name: a pointer to a string containing the name of the file to create. | 423 | * @name: a pointer to a string containing the name of the file to create. |
424 | * @mode: the permission that the file should have | 424 | * @mode: the permission that the file should have |
425 | * @parent: a pointer to the parent dentry for this file. This should be a | 425 | * @parent: a pointer to the parent dentry for this file. This should be a |