aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb-core/dvb_ringbuffer.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <[email protected]>2018-05-08 18:14:57 +0000
committerMauro Carvalho Chehab <[email protected]>2018-06-15 21:10:01 +0000
commit5fb94e9ca333f0fe1d96de06704a79942b3832c3 (patch)
treec7577c1ee04f2301299a10b42e32b3a6063fe6a6 /drivers/media/dvb-core/dvb_ringbuffer.c
parentdocs: fix broken references with multiple hints (diff)
downloadkernel-5fb94e9ca333f0fe1d96de06704a79942b3832c3.tar.gz
kernel-5fb94e9ca333f0fe1d96de06704a79942b3832c3.zip
docs: Fix some broken references
As we move stuff around, some doc references are broken. Fix some of them via this script: ./scripts/documentation-file-ref-check --fix Manually checked if the produced result is valid, removing a few false-positives. Acked-by: Takashi Iwai <[email protected]> Acked-by: Masami Hiramatsu <[email protected]> Acked-by: Stephen Boyd <[email protected]> Acked-by: Charles Keepax <[email protected]> Acked-by: Mathieu Poirier <[email protected]> Reviewed-by: Coly Li <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]> Acked-by: Jonathan Corbet <[email protected]>
Diffstat (limited to 'drivers/media/dvb-core/dvb_ringbuffer.c')
-rw-r--r--drivers/media/dvb-core/dvb_ringbuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-core/dvb_ringbuffer.c b/drivers/media/dvb-core/dvb_ringbuffer.c
index 4330b6fa4af2..d1d471af0636 100644
--- a/drivers/media/dvb-core/dvb_ringbuffer.c
+++ b/drivers/media/dvb-core/dvb_ringbuffer.c
@@ -55,7 +55,7 @@ int dvb_ringbuffer_empty(struct dvb_ringbuffer *rbuf)
* this pairs with smp_store_release() in dvb_ringbuffer_write(),
* dvb_ringbuffer_write_user(), or dvb_ringbuffer_reset()
*
- * for memory barriers also see Documentation/circular-buffers.txt
+ * for memory barriers also see Documentation/core-api/circular-buffers.rst
*/
return (rbuf->pread == smp_load_acquire(&rbuf->pwrite));
}