diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2023-04-07 06:54:51 -0400 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2023-04-10 16:46:11 -0600 |
commit | 2ca956cf883458a713d7e2f4c37554b374b39907 (patch) | |
tree | 26efb9442c9c72a4e3d96c6a029e3c996135aaf7 /Documentation/core-api | |
parent | 790a6c21c111ba7dcddf762f791fb3178711b82f (diff) | |
download | linux-next-2ca956cf883458a713d7e2f4c37554b374b39907.tar.gz |
dma-api-howto: typo fix
Stumbled upon a typo while reading the doc, here's a fix.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Link: https://lore.kernel.org/r/af1505348a67981f63ccff4e3c3d45b686cda43f.1680864874.git.mst@redhat.com
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/core-api')
-rw-r--r-- | Documentation/core-api/dma-api-howto.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/core-api/dma-api-howto.rst b/Documentation/core-api/dma-api-howto.rst index 828846804e25..72f6cdb6be1c 100644 --- a/Documentation/core-api/dma-api-howto.rst +++ b/Documentation/core-api/dma-api-howto.rst @@ -185,7 +185,7 @@ device struct of your device is embedded in the bus-specific device struct of your device. For example, &pdev->dev is a pointer to the device struct of a PCI device (pdev is a pointer to the PCI device struct of your device). -These calls usually return zero to indicated your device can perform DMA +These calls usually return zero to indicate your device can perform DMA properly on the machine given the address mask you provided, but they might return an error if the mask is too small to be supportable on the given system. If it returns non-zero, your device cannot perform DMA properly on |