diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2018-07-15 19:31:28 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-07-16 13:32:20 +0200 |
commit | 3ec78790ec9a1e23fd9b6c8681a7cd3b64d3ad23 (patch) | |
tree | 850be83a9c46085d34911c21aa47a0bd01c49cc6 | |
parent | PM / Domains: Stop deferring probe at the end of initcall (diff) | |
download | linux-3ec78790ec9a1e23fd9b6c8681a7cd3b64d3ad23.tar.xz linux-3ec78790ec9a1e23fd9b6c8681a7cd3b64d3ad23.zip |
sysfs.h: fix non-kernel-doc comment
Don't use "/**" to begin this comment block since it is not a
kernel-doc comment block.
Also adjust comment line to fit in 80 characters.
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | include/linux/sysfs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/sysfs.h b/include/linux/sysfs.h index b8bfdc173ec0..8e08a90b1d15 100644 --- a/include/linux/sysfs.h +++ b/include/linux/sysfs.h @@ -91,9 +91,9 @@ struct attribute_group { struct bin_attribute **bin_attrs; }; -/** - * Use these macros to make defining attributes easier. See include/linux/device.h - * for examples.. +/* + * Use these macros to make defining attributes easier. + * See include/linux/device.h for examples.. */ #define SYSFS_PREALLOC 010000 |