Commit 962d1ca7 authored by Stelian Pop's avatar Stelian Pop Committed by Linus Torvalds

[PATCH] correct dma_set_mask return code in DMA-API.txt

The documentation says dma_set_api() returns 1 on success and
0 on error, which is plain wrong, standard kernel return codes
are used instead (0 on ok, -ESOMETHING on error).
parent 4b0f0461
...@@ -160,7 +160,7 @@ pci_set_dma_mask(struct pci_device *dev, u64 mask) ...@@ -160,7 +160,7 @@ pci_set_dma_mask(struct pci_device *dev, u64 mask)
Checks to see if the mask is possible and updates the device Checks to see if the mask is possible and updates the device
parameters if it is. parameters if it is.
Returns: 1 if successful and 0 if not Returns: 0 if successful and a negative error if not.
u64 u64
dma_get_required_mask(struct device *dev) dma_get_required_mask(struct device *dev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment