diff options
author | Jonathan Corbet <corbet@lwn.net> | 2019-10-01 11:42:07 -0600 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2019-10-07 09:13:43 -0600 |
commit | f704985b1e7ea0f9fde1cfb1354d57593ba62fcb (patch) | |
tree | 756a886e7e3d5b07ed2a4cd7dbfbfcb0630bbe98 /Documentation/driver-api | |
parent | ea83df73aaa3bded80e441d05ca2873c37f84e0a (diff) | |
download | linux-f704985b1e7ea0f9fde1cfb1354d57593ba62fcb.tar.gz linux-f704985b1e7ea0f9fde1cfb1354d57593ba62fcb.tar.bz2 linux-f704985b1e7ea0f9fde1cfb1354d57593ba62fcb.zip |
docs/driver-api: Catch up with dma_buf file-name changes
drivers/dma_buf/reservation.c was renamed to dma-resv.c (and
include/linux/reservation.h to dma-resv.h), but the documentation was not
updated to match, leading to these build errors:
Error: Cannot open file ./drivers/dma-buf/reservation.c
Error: Cannot open file ./drivers/dma-buf/reservation.c
Error: Cannot open file ./drivers/dma-buf/reservation.c
Error: Cannot open file ./include/linux/reservation.h
Error: Cannot open file ./include/linux/reservation.h
Update the documentation and make the world happy again.
Fixes: 52791eeec1d9 ("dma-buf: rename reservation_object to dma_resv')
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/driver-api')
-rw-r--r-- | Documentation/driver-api/dma-buf.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/driver-api/dma-buf.rst b/Documentation/driver-api/dma-buf.rst index b541e97c7ab1..c78db28519f7 100644 --- a/Documentation/driver-api/dma-buf.rst +++ b/Documentation/driver-api/dma-buf.rst @@ -118,13 +118,13 @@ Kernel Functions and Structures Reference Reservation Objects ------------------- -.. kernel-doc:: drivers/dma-buf/reservation.c +.. kernel-doc:: drivers/dma-buf/dma-resv.c :doc: Reservation Object Overview -.. kernel-doc:: drivers/dma-buf/reservation.c +.. kernel-doc:: drivers/dma-buf/dma-resv.c :export: -.. kernel-doc:: include/linux/reservation.h +.. kernel-doc:: include/linux/dma-resv.h :internal: DMA Fences |