diff options
author | Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> | 2019-06-07 16:47:13 +0900 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2019-06-07 11:10:33 -0600 |
commit | 99d2b938672944831035bef50c68a6e948e93abf (patch) | |
tree | 7658f769c865d8f1319007aadd78e71c802a6b54 | |
parent | 58d494669f36d0b61b7ec42c232877167ed3f5ce (diff) | |
download | blackbird-op-linux-99d2b938672944831035bef50c68a6e948e93abf.tar.gz blackbird-op-linux-99d2b938672944831035bef50c68a6e948e93abf.zip |
Documentation: DMA-API: fix a function name of max_mapping_size
The exported function name is dma_max_mapping_size(), not
dma_direct_max_mapping_size() so that this patch fixes
the function name in the documentation.
Fixes: 133d624b1cee ("dma: Introduce dma_max_mapping_size()")
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
-rw-r--r-- | Documentation/DMA-API.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/DMA-API.txt b/Documentation/DMA-API.txt index 0076150fdccb..e47c63bd4887 100644 --- a/Documentation/DMA-API.txt +++ b/Documentation/DMA-API.txt @@ -198,7 +198,7 @@ call to set the mask to the value returned. :: size_t - dma_direct_max_mapping_size(struct device *dev); + dma_max_mapping_size(struct device *dev); Returns the maximum size of a mapping for the device. The size parameter of the mapping functions like dma_map_single(), dma_map_page() and |