diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2024-07-12 09:38:16 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2024-07-13 07:36:10 +0200 |
commit | b69bdba5a37eb6224039e9572e0e98fc3a931fee (patch) | |
tree | 3d544d841764d7de549ca907b66197e63093206d /kernel/dma | |
parent | swiotlb: reduce swiotlb pool lookups (diff) | |
download | linux-b69bdba5a37eb6224039e9572e0e98fc3a931fee.tar.xz linux-b69bdba5a37eb6224039e9572e0e98fc3a931fee.zip |
swiotlb: fix kernel-doc description for swiotlb_del_transient
Describe the pool argument in the kernel-doc comment for
swiotlb_del_transient.
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'kernel/dma')
-rw-r--r-- | kernel/dma/swiotlb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/dma/swiotlb.c b/kernel/dma/swiotlb.c index b4d8167b2f8d..df68d29740a0 100644 --- a/kernel/dma/swiotlb.c +++ b/kernel/dma/swiotlb.c @@ -1500,6 +1500,7 @@ static void swiotlb_release_slots(struct device *dev, phys_addr_t tlb_addr, * swiotlb_del_transient() - delete a transient memory pool * @dev: Device which mapped the buffer. * @tlb_addr: Physical address within a bounce buffer. + * @pool: Pointer to the transient memory pool to be checked and deleted. * * Check whether the address belongs to a transient SWIOTLB memory pool. * If yes, then delete the pool. |