diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2022-12-01 10:03:31 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-12-01 19:16:46 +0300 |
commit | 2e833c8c8c42a3b6e22d6b3a9d2d18e425551261 (patch) | |
tree | 2bf44214fbde21a0b35c99282d835d4d95e125e2 /block/bdev.c | |
parent | 7a88b1a8263a8a0797a5e528b9cd3607e2462a3b (diff) | |
download | linux-2e833c8c8c42a3b6e22d6b3a9d2d18e425551261.tar.xz |
block: bdev & blktrace: use consistent function doc. notation
Use only one hyphen in kernel-doc notation between the function name
and its short description.
The is the documented kerenl-doc format. It also fixes the HTML
presentation to be consistent with other functions.
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: linux-block@vger.kernel.org
Link: https://lore.kernel.org/r/20221201070331.25685-1-rdunlap@infradead.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/bdev.c')
-rw-r--r-- | block/bdev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/bdev.c b/block/bdev.c index d699ecdb3260..edc110d90df4 100644 --- a/block/bdev.c +++ b/block/bdev.c @@ -224,7 +224,7 @@ int fsync_bdev(struct block_device *bdev) EXPORT_SYMBOL(fsync_bdev); /** - * freeze_bdev -- lock a filesystem and force it into a consistent state + * freeze_bdev - lock a filesystem and force it into a consistent state * @bdev: blockdevice to lock * * If a superblock is found on this device, we take the s_umount semaphore @@ -268,7 +268,7 @@ done: EXPORT_SYMBOL(freeze_bdev); /** - * thaw_bdev -- unlock filesystem + * thaw_bdev - unlock filesystem * @bdev: blockdevice to unlock * * Unlocks the filesystem and marks it writeable again after freeze_bdev(). |