Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dma-fence: correct kernel-doc function parameter @flags

'make htmldocs' complains that dma_fence_unlock_irqrestore() is missing
a description of its @flags parameter. The description is there but it is
missing a ':' sign. Add that and correct the possessive form of "its".

WARNING: ../include/linux/dma-fence.h:414 function parameter 'flags' not described in 'dma_fence_unlock_irqrestore'

Fixes: 3e5067931b5d ("dma-buf: abstract fence locking v2")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Link: https://lore.kernel.org/r/20260407043649.2015894-1-rdunlap@infradead.org
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Christian König <christian.koenig@amd.com>

authored by

Randy Dunlap and committed by
Christian König
408df621 cb2a2a5b

+2 -2
+2 -2
include/linux/dma-fence.h
··· 408 408 /** 409 409 * dma_fence_unlock_irqrestore - unlock the fence and irqrestore 410 410 * @fence: the fence to unlock 411 - * @flags the CPU flags to restore 411 + * @flags: the CPU flags to restore 412 412 * 413 - * Unlock the fence, allowing it to change it's state to signaled again. 413 + * Unlock the fence, allowing it to change its state to signaled again. 414 414 */ 415 415 #define dma_fence_unlock_irqrestore(fence, flags) \ 416 416 spin_unlock_irqrestore(dma_fence_spinlock(fence), flags)