]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
blk-mq-dma: fix kernel-doc function name for integrity DMA iterator
authorKriish Sharma <kriish.sharma2006@gmail.com>
Tue, 11 Nov 2025 11:58:10 +0000 (11:58 +0000)
committerJens Axboe <axboe@kernel.dk>
Tue, 11 Nov 2025 15:37:33 +0000 (08:37 -0700)
commit6d7e3870af11c2b5966b2769f9e8a0d4764f52cc
treed5f0cad5b6573e9e7ddd5c99df25c7829b2db905
parentfd9ecd005252b595fd02ff7fcc4056251027404d
blk-mq-dma: fix kernel-doc function name for integrity DMA iterator

Documentation build reported:

  Warning: block/blk-mq-dma.c:373 expecting prototype for blk_rq_integrity_dma_map_iter_start(). Prototype was for blk_rq_integrity_dma_map_iter_next() instead

The kernel-doc comment above `blk_rq_integrity_dma_map_iter_next()` used
the wrong function name (`blk_rq_integrity_dma_map_iter_start`) in its
header. This patch corrects the function name in the kernel-doc block to
match the actual implementation, ensuring clean documentation builds.

Fixes: fec9b16dc555 ("blk-mq-dma: add scatter-less integrity data DMA mapping")
Signed-off-by: Kriish Sharma <kriish.sharma2006@gmail.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-mq-dma.c