Commit 84197024 authored by Logan Gunthorpe's avatar Logan Gunthorpe Committed by Christoph Hellwig
Browse files

dma-mapping: reformat comment to suppress htmldoc warning



make html doc reports a cryptic warning with the commit named below:

  kernel/dma/mapping.c:258: WARNING: Option list ends without a blank
                                     line; unexpected unindent.

Seems the parser is a bit fussy about the tabbing and having a single
space tab causes the warning. To suppress the warning add another
tab to the list and reindent everything.

Fixes: 7c2645a2 ("dma-mapping: allow EREMOTEIO return code for P2PDMA transfers")
Signed-off-by: default avatarLogan Gunthorpe <logang@deltatee.com>
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
parent 0d06132f
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -254,10 +254,10 @@ EXPORT_SYMBOL(dma_map_sg_attrs);
 *   -ENOMEM		Insufficient resources (like memory or IOVA space) to
 *			complete the mapping. Should succeed if retried later.
 *   -EIO		Legacy error code with an unknown meaning. eg. this is
 *		returned if a lower level call returned DMA_MAPPING_ERROR.
 *   -EREMOTEIO	The DMA device cannot access P2PDMA memory specified in
 *		the sg_table. This will not succeed if retried.
 *
 *			returned if a lower level call returned
 *			DMA_MAPPING_ERROR.
 *   -EREMOTEIO		The DMA device cannot access P2PDMA memory specified
 *			in the sg_table. This will not succeed if retried.
 */
int dma_map_sgtable(struct device *dev, struct sg_table *sgt,
		    enum dma_data_direction dir, unsigned long attrs)