mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
fs/ntfs3: Restyle comments to better align with kernel-doc
Capitalize comments and end with period for better reading. Also function comments are now little more kernel-doc style. This way we can easily convert them to kernel-doc style if we want. Note that these are not yet complete with this style. Example function comments start with /* and in kernel-doc style they start /**. Use imperative mood in function descriptions. Change words like ntfs -> NTFS, linux -> Linux. Use "we" not "I" when commenting code. Signed-off-by: Kari Argillander <kari.argillander@gmail.com> Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
This commit is contained in:
parent
b8155e95de
commit
e8b8e97f91
21 changed files with 1987 additions and 2070 deletions
|
@ -3,7 +3,8 @@
|
|||
*
|
||||
* Copyright (C) 2019-2021 Paragon Software GmbH, All rights reserved.
|
||||
*
|
||||
* useful functions for debugging
|
||||
* Useful functions for debugging.
|
||||
*
|
||||
*/
|
||||
|
||||
// clang-format off
|
||||
|
@ -33,7 +34,7 @@ void ntfs_inode_printk(struct inode *inode, const char *fmt, ...)
|
|||
#endif
|
||||
|
||||
/*
|
||||
* Logging macros ( thanks Joe Perches <joe@perches.com> for implementation )
|
||||
* Logging macros. Thanks Joe Perches <joe@perches.com> for implementation.
|
||||
*/
|
||||
|
||||
#define ntfs_err(sb, fmt, ...) ntfs_printk(sb, KERN_ERR fmt, ##__VA_ARGS__)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue