diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-07-04 15:47:53 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-07-09 19:37:29 -0400 |
commit | 8278bd3abd727f894f6e41adc06f1126a23ee1fd (patch) | |
tree | 05748faded13ef595e615cf5b6b8b13556c06530 /fs/kernfs | |
parent | 485d44022a152c0254dd63445fdb81c4194cbf0e (diff) |
kernfs: kernel-doc warning fix
s/static_name/name_is_static
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/kernfs')
-rw-r--r-- | fs/kernfs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/kernfs/file.c b/fs/kernfs/file.c index d895b4b7b661..4429d6d9217f 100644 --- a/fs/kernfs/file.c +++ b/fs/kernfs/file.c | |||
@@ -896,7 +896,7 @@ const struct file_operations kernfs_file_fops = { | |||
896 | * @ops: kernfs operations for the file | 896 | * @ops: kernfs operations for the file |
897 | * @priv: private data for the file | 897 | * @priv: private data for the file |
898 | * @ns: optional namespace tag of the file | 898 | * @ns: optional namespace tag of the file |
899 | * @static_name: don't copy file name | 899 | * @name_is_static: don't copy file name |
900 | * @key: lockdep key for the file's active_ref, %NULL to disable lockdep | 900 | * @key: lockdep key for the file's active_ref, %NULL to disable lockdep |
901 | * | 901 | * |
902 | * Returns the created node on success, ERR_PTR() value on error. | 902 | * Returns the created node on success, ERR_PTR() value on error. |